foodcritic-8.1.0/0000755000004100000410000000000013005226016013670 5ustar www-datawww-datafoodcritic-8.1.0/Rakefile0000644000004100000410000000353313005226016015341 0ustar www-datawww-datarequire "foodcritic/version" require "bundler" require "rake/testtask" task :default => [:man, :install, :rubocop, :test, :features] Bundler.setup Bundler::GemHelper.install_tasks Rake::TestTask.new do |t| t.pattern = "spec/foodcritic/*_spec.rb" end Rake::TestTask.new do |t| t.name = "regressions" t.pattern = "spec/regression/*_spec.rb" end begin require "cucumber" require "cucumber/rake/task" Cucumber::Rake::Task.new(:features) do |t| t.cucumber_opts = ["-f", "progress", "--strict"] unless ENV.has_key?("FC_FORK_PROCESS") && ENV["FC_FORK_PROCESS"] == true.to_s t.cucumber_opts += ["-t", "~@build"] t.cucumber_opts += ["-t", "~@context"] end t.cucumber_opts += ["features"] end rescue LoadError puts "cucumber is not available. gem install cucumber to get rake rubocop to work" end begin require "chefstyle" require "rubocop/rake_task" desc "Run Chefstyle (rubocop)" RuboCop::RakeTask.new do |task| task.options << "--display-cop-names" end rescue LoadError puts "chefstyle gem is not available. gem install chefstyle to get rake rubocop to work" end begin require "github_changelog_generator/task" GitHubChangelogGenerator::RakeTask.new :changelog do |config| config.header = "# FoodCritic Changelog:" config.future_release = FoodCritic::VERSION config.enhancement_labels = "enhancement,Enhancement,Enhancements,New Feature,Feature".split(",") config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(",") config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog,Question,Discussion".split(",") #config.issues = false end rescue LoadError puts "github_changelog_generator is not available. gem install github_changelog_generator to generate changelogs" end desc "Build the manpage" task(:man) do sh "ronn -w --roff man/*.ronn" end foodcritic-8.1.0/bin/0000755000004100000410000000000013005226016014440 5ustar www-datawww-datafoodcritic-8.1.0/bin/foodcritic0000755000004100000410000000042113005226016016510 0ustar www-datawww-data#!/usr/bin/env ruby require_relative "../lib/foodcritic" module FoodCritic cmd_line = CommandLine.new(ARGV) review, status = Linter.run(cmd_line) printer = cmd_line.show_context? ? ContextOutput.new : SummaryOutput.new printer.output(review) exit status.to_i end foodcritic-8.1.0/Gemfile0000644000004100000410000000053413005226016015165 0ustar www-datawww-datasource "https://rubygems.org" gem "foodcritic", :path => "." group :test do gem "aruba", "~> 0.5" gem "cucumber", ">= 2" gem "minitest", "~> 5.3" gem "simplecov", "~> 0.8" end group :development do gem "chef", "~> 12.1" gem "ronn", "~> 0.7" gem "chefstyle", "~> 0.4" end group :changelog do gem "github_changelog_generator" end foodcritic-8.1.0/features/0000755000004100000410000000000013005226016015506 5ustar www-datawww-datafoodcritic-8.1.0/features/063_cookbook_incorrectly_depends_on_itself.feature0000644000004100000410000000130513005226016027441 0ustar www-datawww-dataFeature: Check for metadata using suggests keyword In order to avoid pathological depsolving issues As a developer I want to identify cookboks that depend on themselves and remove that (unnecessary) dependency Scenario: Metadata with self dependency Given a cookbook with metadata that includes a self dependency When I check the cookbook Then the metadata with self dependency warning 063 should be shown against the metadata file Scenario: Metadata without self depenency Given a cookbook with metadata that does not include a self dependency When I check the cookbook Then the metadata with self dependency warning 063 should be not shown against the metadata file foodcritic-8.1.0/features/029_check_for_no_leading_cookbook_name.feature0000644000004100000410000000157113005226016026451 0ustar www-datawww-dataFeature: Check for no leading cookbook name In order to ensure cookbook recipes are correctly listed As a developer I want to identify recipes defined in metadata that do not include the leading cookbook name Scenario Outline: Recipe declaration in metadata Given a cookbook with metadata that declares a recipe with When I check the cookbook Then the no leading cookbook name warning 029 should be Examples: | declaration | show_warning | | recipe "example", "Installs Example" | not shown | | recipe "example::default", "Installs Example" | not shown | | recipe "default", "Installs Example" | shown | | recipe my_var, "Installs Example" | not shown | | recipe "#{my_var}::default", "Installs Example" | not shown | foodcritic-8.1.0/features/018_check_for_old_lwrp_notification_syntax.feature0000644000004100000410000000251713005226016027461 0ustar www-datawww-dataFeature: Check for use of deprecated LWRP notification syntax In order to ensure LWRP notifications continue to work As a developer I want to identify when a LWRP notification uses the deprecated syntax Scenario: LWRP with no notifications Given a cookbook that contains a LWRP that does not trigger notifications When I check the cookbook Then the LWRP uses deprecated notification syntax warning 018 should not be displayed against the provider file Scenario: LWRP with deprecated notification syntax Given a cookbook that contains a LWRP that uses the deprecated notification syntax When I check the cookbook Then the LWRP uses deprecated notification syntax warning 018 should be displayed against the provider file Scenario: LWRP with deprecated notification syntax (class variable) Given a cookbook that contains a LWRP that uses the deprecated notification syntax with a class variable When I check the cookbook Then the LWRP uses deprecated notification syntax warning 018 should be displayed against the provider file Scenario: LWRP with current notification syntax Given a cookbook that contains a LWRP that uses the current notification syntax When I check the cookbook Then the LWRP uses deprecated notification syntax warning 018 should not be displayed against the provider filefoodcritic-8.1.0/features/013_check_for_hardcoded_tmpdir.feature0000644000004100000410000000215013005226016024743 0ustar www-datawww-dataFeature: Check for hard-coded temp directory In order to ensure that my cookbook works on a server that may have limited /tmp space As a developer I want to identify if my cookbook is hard-coding references to /tmp rather than using the Chef file cache path Scenario: Download to hard-coded temp directory Given a cookbook that downloads a file to /tmp When I check the cookbook Then the hard-coded temp directory warning 013 should be displayed Scenario: Download to hard-coded temp directory (expression) Given a cookbook that downloads a file to /tmp with an expression When I check the cookbook Then the hard-coded temp directory warning 013 should be displayed Scenario: Download to Chef file cache Given a cookbook that downloads a file to the Chef file cache When I check the cookbook Then the hard-coded temp directory warning 013 should not be displayed Scenario: Download to anywhere else Given a cookbook that downloads a file to a users home directory When I check the cookbook Then the hard-coded temp directory warning 013 should not be displayed foodcritic-8.1.0/features/006_check_file_mode.feature0000644000004100000410000000310313005226016022525 0ustar www-datawww-dataFeature: Check file mode In order to ensure that file and directory permissions are applied correctly As a developer I want to identify where the mode may not be interpreted as expected Scenario Outline: Specifying file mode Given a resource declared with the mode When I check the cookbook Then the warning 006 should be Examples: | resource | mode | shown_where_invalid | | cookbook_file | "644" | valid | | cookbook_file | 644 | invalid | | cookbook_file | 00644 | valid | | directory | 755 | invalid | | directory | "755" | valid | | directory | 0644 | valid | | directory | "0644" | valid | | directory | 400 | invalid | | directory | 00400 | valid | | file | "755" | valid | | file | 755 | invalid | | file | 644 | invalid | | file | 044 | invalid | | file | "0644" | valid | | file | ary[1] | valid | | template | 00400 | valid | | template | 400 | invalid | | template | "400" | valid | Scenario: Unspecified mode Given a file resource declared without a mode When I check the cookbook Then the warning 006 should not be displayed foodcritic-8.1.0/features/002_check_string_interpolation.feature0000644000004100000410000000460213005226016025060 0ustar www-datawww-dataFeature: Check String Interpolation In order to make my cookbooks more readable As a developer I want to identify if values are unnecessarily interpolated Scenario: Resource name interpolated string (symbol) Given a cookbook with a single recipe that creates a directory resource with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed Scenario: Resource name interpolated string Given a cookbook with a single recipe that creates a directory resource with an interpolated name from a string When I check the cookbook Then the string interpolation warning 002 should be displayed Scenario: Resource name string literal Given a cookbook with a single recipe that creates a directory resource with a string literal When I check the cookbook Then the string interpolation warning 002 should not be displayed Scenario: Resource name compound expression Given a cookbook with a single recipe that creates a directory resource with a compound expression When I check the cookbook Then the string interpolation warning 002 should not be displayed Scenario: Resource name literal and interpolated Given a cookbook with a single recipe that creates a directory resource with a literal and interpolated variable When I check the cookbook Then the string interpolation warning 002 should not be displayed Scenario: Resource name interpolated and literal Given a cookbook with a single recipe that creates a directory resource with an interpolated variable and a literal When I check the cookbook Then the string interpolation warning 002 should not be displayed Scenario: String interpolation in first Hash key Given a cookbook with a single recipe for which the first hash key is an interpolated string When I check the cookbook Then the string interpolation warning 002 should be displayed Scenario: String interpolation in first Hash value Given a cookbook with a single recipe for which the first hash value is an interpolated string When I check the cookbook Then the string interpolation warning 002 should be displayed Scenario: String interpolation in heredoc Given a cookbook with a single recipe that logs an interpolated string heredoc When I check the cookbook Then the string interpolation warning 002 should not be displayed foodcritic-8.1.0/features/052_check_for_metadata_using_suggests_keyword.feature0000644000004100000410000000132413005226016030131 0ustar www-datawww-dataFeature: Check for metadata using suggests keyword In order to ensure that recipe metadata is stable As a developer I want to identify metadata that is using unimplemented features whose definitions may change in the future Scenario: Metadata with the suggests keyword Given a cookbook with metadata that includes a suggests keyword When I check the cookbook Then the metadata using suggests warning 052 should be shown against the metadata file Scenario: Metadata without the suggests keyword Given a cookbook with metadata that does not include a suggests keyword When I check the cookbook Then the metadata using suggests warning 052 should be not shown against the metadata file foodcritic-8.1.0/features/027_check_for_internal_attribute_use.feature0000644000004100000410000000221713005226016026233 0ustar www-datawww-dataFeature: Check for use of internal attributes In order to avoid confusion about the expected state of a converged node As a developer I want to identify calls to 'internal' resource attributes Scenario Outline: Access of internal attributes Given a cookbook recipe that declares a resource with the attribute set to When I check the cookbook Then the resource sets internal attribute warning 027 should be Examples: | resource | attribute | value | show_warning | | service | enabled | true | shown | | service | enabled | false | shown | | service | enabled | [].include?('foo') | shown | | service | running | true | shown | | service | running | false | shown | | service | running | [].include?('foo') | shown | | service | service_name | "foo" | not shown | | my_lwrp | enabled | true | not shown | | my_lwrp | running | true | not shown | foodcritic-8.1.0/features/step_definitions/0000755000004100000410000000000013005226016021054 5ustar www-datawww-datafoodcritic-8.1.0/features/step_definitions/cookbook_steps.rb0000644000004100000410000022441713005226016024437 0ustar www-datawww-dataGiven "a cookbook attributes file that declares and refers to a local variable" do write_attributes %q{ master = search(:nodes, 'foo:master') default[:foo][:master] = master } end Given /^a cookbook attributes file that refers to an attribute with (.*)$/ do |reference| write_attributes %Q{ default['myhostname'] = #{reference} } end Given "a cookbook attributes file that sets an attribute to be the result of a library call" do write_attributes %q{ ::Chef::Node.send(:include, Opscode::OpenSSL::Password) default[:admin_password] = secure_password } end Given "a cookbook attributes file with a brace block that takes arguments" do write_attributes %q{ foo = {'foo' => 'bar'} foo.each{|k, v| default['waka'][k] = v} } end Given "a cookbook attributes file with a do block that takes arguments" do write_attributes %q{ foo = {'foo' => 'bar'} foo.each do |k, v| default['waka'][k] = v end } end Given "a cookbook attributes file that sets an attribute to have line break" do write_attributes %q{ default['foo']['bar']['baz'][ 'bing']['blonk'] = 'stupendous' } end Given "a cookbook attributes file that sets an attribute to have line break and arguments" do write_attributes %q{ %w{ foo bar }.each do |baz| default['foo']["bing_#{baz}"][ 'blonk'] = baz end } end Given /^a cookbook (attributes|recipe) file with assignment (.*)$/ do |type, assignment| if type == "attributes" write_attributes assignment else write_recipe assignment end end Given "a cookbook recipe that contains a group resource that uses the 'system' bool attribute" do write_recipe %q{ group "senge" do system true end } end Given "a cookbook recipe that contains a user resource that uses the 'system' string attribute" do write_recipe %q{ user "foo" do system "bar" end } end Given /^a cookbook recipe that declares (too many )?execute resources varying only in the command in branching conditionals$/ do |too_many| extra_resource = %q{ execute "bing" do action :run end } write_recipe %Q{ if true execute "foo" do action :run end else #{extra_resource if too_many} execute "bar" do action :run end execute "baz" do action :run end end }.strip end Given /^a cookbook recipe that declares a ([^ ]+) resource with the ([^ ]+) attribute set to (.*)$/ do |resource, attribute, value| write_recipe %Q{ #{resource} "foo" do #{attribute} #{value} end } end Given /^a cookbook recipe that executes '([^']+)' with an execute resource$/ do |command| write_recipe %Q{ execute "#{command}" do action :run end } end Given /^a cookbook recipe that spawns a sub-process with (.*)$/ do |command| write_recipe command end Given "a provider that contains a ruby_block resource that spawns a sub-process with system" do write_provider "site", %q{ action :install do ruby_block "ruby" do block do system "ls" end end end } end Given "a cookbook recipe with a deploy resource that contains a template resource" do write_recipe %q{ deploy '/foo/bar' do before_restart do template "/tmp/config.conf" do source "foo.conf.erb" variables({ :config_var => 'foo' }) end end end } write_file "cookbooks/example/templates/default/foo.conf.erb", %q{ <%= @config_var %> } end Given "a cookbook recipe with a resource that notifies where the action is an expression" do write_recipe %q{ notify_action = node['platform_family'] == "mac_os_x" ? :restart : :reload service 'svc' do action :nothing end template '/tmp/foo' do source 'foo.erb' notifies notify_action, 'service[svc]' end } end Given /^a cookbook recipe with an execute resource named (.*)$/ do |name| write_recipe %Q{ execute "#{name}" do action :run end } end Given /^a cookbook recipe with an execute resource that runs the command (.*)$/ do |command| write_recipe %Q{ execute "do_stuff" do command "#{command}" end } end Given /^a cookbook recipe that refers to (node.*)$/ do |reference| write_recipe %Q{ Chef::Log.info #{reference} } end Given "a cookbook recipe that refers to an attribute with a bare keyword" do write_recipe %q{ node['myhostname'] = hostname } end Given /^a cookbook recipe that wraps a platform\-specific resource in a (.*) conditional$/ do |conditional| write_recipe %Q{ if #{conditional} Chef::Log.info('We matched the platform') end } end Given "a cookbook provider that declares execute resources varying only in the command in separate actions" do write_provider "site", %q{ action :start do execute "foo" do action :run end new_resource.updated_by_last_action(true) end action :stop do execute "bar" do action :run end new_resource.updated_by_last_action(true) end action :restart do execute "baz" do action :run end new_resource.updated_by_last_action(true) end }.strip end Given "a cookbook provider that declares execute resources varying only in the command in the same action" do write_provider "site", %q{ action :start do execute "foo" do action :run end execute "bar" do action :run end execute "baz" do action :run end new_resource.updated_by_last_action(true) end }.strip end Given /^a cookbook recipe that attempts to perform a search with (.*)$/ do |search_type| recipe_with_search(search_type.include?("subexpression") ? :with_subexpression : search_type.tr(" ", "_").to_sym) end Given /^a cookbook recipe that declares a resource called ([^ ]+) with the condition (.*)(in|outside) a loop$/ do |name, condition, is_loop| write_recipe %Q{ #{'%w{rover fido}.each do |pet_name|' if is_loop == 'in'} execute #{name} do command "echo 'Feeding: \#{pet_name}'; touch '/tmp/\#{pet_name}'" #{condition.nil? ? 'not_if { ::File.exists?("/tmp/\#{pet_name}")}' : condition} end #{'end' if is_loop == 'in'} } end Given /^a cookbook recipe that declares (a resource|multiple resources) nested in a ([a-z_]+) condition with (.*)$/ do |arity, wrapping_condition, condition_attribute| blk = "{ File.exists?('/etc/passwd') }" str = "'test -f /etc/passwd'" conds = wrapping_condition.split("_") write_recipe %Q{ #{conds.first} node['foo'] == 'bar' service "apache" do action :enable #{ case condition_attribute when /(only_if|not_if) block/ then "#{$1} #{blk}" when /(only_if|not_if) string/ then "#{$1} #{str}" end } end #{%q{service "httpd" do action :enable end} if arity.include?('multiple')} #{"elsif true\nlog 'bar'" if conds.include? 'elsif'} #{"else\nlog 'foo'" if conds.include? 'else'} end } end Given /^a cookbook recipe that declares a resource with a (.*)$/ do |conditional| write_recipe %Q{ template "/tmp/foo" do mode "0644" source "foo.erb" #{conditional} end } end Given /^a cookbook recipe (?:that declares a resource with no conditions at all|with no notifications)$/ do write_recipe %q{ service "apache" do action :enable end } end Given "a cookbook recipe that declares multiple directories with different file modes" do write_recipe %q{ directory "#{node["nagios"]["dir"]}/dist" do owner "nagios" group "nagios" mode 0755 end directory node["nagios"]["state_dir"] do owner "nagios" group "nagios" mode 0751 end directory "#{node["nagios"]["state_dir"]}/rw" do owner "nagios" group node["apache"]["user"] mode 2710 end } end Given "a cookbook recipe that declares multiple package resources mixed with other resources" do write_recipe %q{ package "erlang-base" do action :install end package "erlang-corba" do action :install end package "erlang-crypto" do action :install end service "apache" do supports :restart => true, :reload => true action :enable end template "/tmp/somefile" do mode "0644" source "somefile.erb" not_if "test -f /etc/passwd" end package "rabbitmq-server" do action :install end } end Given /^a cookbook recipe that declares multiple (varying|non-varying) template resources within a block$/ do |vary| do_vary = vary == "varying" write_recipe %Q{ node['apps'].each do |app| template "/etc/#\{app\}.conf" do owner "root" group "root" #{'mode "0600"' if do_vary} end template "/etc/init.d/#\{app\}" do owner "root" group "root" #{'mode "0700"' if do_vary} end template "/home/#\{app\}/foo" do owner "root" group "root" #{'mode "0600"' if do_vary} end end } end Given "a cookbook recipe that declares multiple resources varying only in the package name" do write_recipe %q{ package "erlang-base" do action :install end package "erlang-corba" do action :install end package "erlang-crypto" do action :install end package "rabbitmq-server" do action :install end } end Given "a cookbook recipe that declares multiple resources with more variation" do write_recipe %q{ package "erlang-base" do action :install end package "erlang-corba" do action :install end package "erlang-crypto" do version '13.b.3' action :install end package "rabbitmq-server" do action :install end } end Given "a cookbook recipe that declares non contiguous package resources mixed with other resources" do write_recipe %q{ package "erlang-base" do action :install end service "apache" do supports :restart => true, :reload => true action :enable end package "erlang-crypto" do action :install end template "/tmp/somefile" do mode "0644" source "somefile.erb" not_if "test -f /etc/passwd" end package "rabbitmq-server" do action :install end } end Given "a cookbook recipe that declares two or fewer resources varying only in the package name" do write_recipe %q{ package "erlang-base" do action :install end package "erlang-corba" do action :install end } end Given 'a cookbook recipe that has a confusingly named local variable "default"' do write_recipe %q{ default = {'run_list' => 'foo'}; Chef::Log.info default['run_list'] } end Given "a cookbook recipe that has a wrapping condition containing a resource with no condition attribute and a Ruby statement" do write_recipe %q{ if node['foo'] == 'bar' Chef::Log.info "Enabling apache to start at boot" service "apache" do action :enable end end } end Given "a cookbook recipe that has a wrapping condition containing a resource with no condition attribute within a loop" do write_recipe %q{ unless node['bar'].include? 'something' bars.each do |bar| service bar['name'] do action :enable end end end } end Given /^a cookbook recipe that includes a local recipe(.*)$/ do |diff_name| cookbook = diff_name.empty? ? "example" : "foo" write_recipe %Q{ include_recipe '#{cookbook}::server' } write_metadata %Q{ name '#{cookbook}' } end Given /^a cookbook recipe that includes a recipe name from an( embedded)? expression(.*)$/ do |embedded, expr| if embedded write_recipe %Q{ include_recipe "#{expr.strip}" } else write_recipe %q{ include_recipe node['foo']['bar'] } end write_metadata %q{ depends "foo" } end Given /^a cookbook recipe that includes a(n un| )?declared recipe dependency(?: {0,1})(unscoped)?( with parentheses)?$/ do |undeclared, unscoped, parens| recipe_with_dependency(:is_declared => undeclared.strip.empty?, :is_scoped => unscoped.nil?, :parentheses => parens) end Given "a cookbook recipe that includes both declared and undeclared recipe dependencies" do write_recipe %q{ include_recipe "foo::default" include_recipe "bar::default" file "/tmp/something" do action :delete end include_recipe "baz::default" } write_metadata %q{ ['foo', 'bar'].each{|cbk| depends cbk} } end Given /^a cookbook recipe that includes several declared recipe dependencies - (brace|block)$/ do |brace_or_block| cookbook_declares_dependencies(brace_or_block.to_sym) end Given /a cookbook recipe that (install|upgrade)s (a gem|multiple gems)(.*)$/ do |action, arity, approach| if arity == "a gem" if approach.empty? recipe_installs_gem(:simple, action.to_sym) else recipe_installs_gem(:compile_time, action.to_sym) end elsif approach.include? "array" recipe_installs_gem(:compile_time_from_array, action.to_sym) else recipe_installs_gem(:compile_time_from_word_list, action.to_sym) end end Given "a cookbook recipe that refers to a hidden template" do write_recipe %q{ template '/etc/.s3cfg' do source '.s3cfg.erb' end } write_file "cookbooks/example/templates/default/.s3cfg.erb", %q{ config=true } end Given /^a cookbook recipe that refers to a (missing |local )?template( in a subdirectory)?$/ do |missing_or_local, sub_dir| sub_dir = sub_dir ? "sub_dir/" : "" write_recipe %Q{ template "/tmp/config.conf" do #{'local true' if missing_or_local == 'local '} source "#{sub_dir}config.conf.erb" variables({ :config_var => 'foo' }) end } unless missing_or_local write_file "cookbooks/example/templates/default/#{sub_dir}config.conf.erb", %q{ <%= @config_var %> } end end Given "a cookbook recipe that refers to a template without an erb extension" do write_recipe %q{ template '/etc/resolv.conf' do source 'resolv.conf' end } write_file "cookbooks/example/templates/default/resolv.conf", "" end Given "a cookbook recipe that defines a template where name is a complex expression" do write_recipe %q{ template ::File.join(new_resource.foo.bar, "str", new_resource.baz) do variables({ :config_var => 'foo' }) end } write_file "cookbooks/example/templates/default/barstrbaz.conf.erb", %q{ <%= @config_var %> } end Given "a cookbook recipe that defines a template where both the name and source are complex expressions" do write_recipe %q{ template ::File.join(new_resource.foo.bar, "str", new_resource.baz) do source new_resource.foo.template variables({ :config_var => 'foo' }) end } write_file "cookbooks/example/templates/default/barstrbaz.conf.erb", %q{ <%= @config_var %> } end Given "a cookbook recipe that defines a template where name and source are both simple expressions" do write_recipe %q{ template "/tmp/config-#{foo}.conf" do source "config-#{foo}.erb" variables({ :config_var => 'foo' }) end } write_file "cookbooks/example/templates/default/config-foo.conf.erb", %q{ <%= @config_var %> } end Given /^a cookbook recipe that (refers to|infers) a template with an expression$/ do |type| write_attributes %q{ default['foo']['name'] = 'foo' } write_recipe case type when "infers" %q{ template "/tmp/config-#{node['foo']['name']}.conf" do variables({ :config_var => 'foo' }) end } else %q{ template "/tmp/config.conf" do source "config-#{node['foo']['name']}.erb" variables({ :config_var => 'foo' }) end } end write_file "cookbooks/example/templates/default/config-foo.conf.erb", %q{ <%= @config_var %> } end Given "a cookbook recipe that uses a template from another cookbook" do write_recipe %q{ template "foo" do cookbook "othercookbook" source "source_in_the_other_cookbook.erb" end } end Given /^a cookbook recipe that uses a(?:n)? (missing )?inferred template$/ do |missing| write_recipe %Q{ template "/tmp/config.conf" do variables({ :config_var => 'foo' }) end } unless missing write_file "cookbooks/example/templates/default/config.conf.erb", %q{ <%= @config_var %> } end end Given /^a cookbook recipe that uses execute to (sleep and then )?([^ ]+) a service via (.*)$/ do |sleep, action, method| method = "service" if method == "the service command" recipe_controls_service(method.include?("full path") ? :service_full_path : method.gsub(/[^a-z_]/, "_").to_sym, sleep, action) end Given "a cookbook recipe that uses execute to list a directory" do write_recipe %Q{ execute "nothing-to-see-here" do command "ls" action :run end } end Given "a cookbook recipe that uses execute with a name attribute to start a service" do write_recipe %Q{ execute "/etc/init.d/foo start" do cwd "/tmp" end } end Given /^a cookbook recipe with a ([^ ]+) resource that subscribes to ([^ ]+) when notified by a remote_file$/ do |source, action| write_recipe %Q{ #{source} "foo" do action :nothing subscribes :#{action}, resources(:remote_file => "/foo/bar"), :immediately end } end Given /^a cookbook recipe with a ([^ ]+) resource with action (.*)$/ do |resource, action| write_recipe %Q{ #{resource} "foo" do action :#{action} end } end Given /^a cookbook recipe with a ([^ ]+) resource with actions (.*)$/ do |resource, actions| write_recipe %Q{ #{resource} "foo" do action [#{actions.split(', ').map { |a| ":#{a}" }.join(", ")}] end } end Given "a cookbook recipe with a case condition unrelated to platform" do write_recipe %Q{ case day_of_week when "Monday", "Tuesday" package "foo" do action :install end when "Wednesday", "Thursday" package "bar" do action :install end end }.strip end Given /^a cookbook recipe with a resource that ([^ ]+)(?: )?([^ ]+)?$/ do |type, notification_timing| write_recipe %Q{ template "/etc/foo.conf" do #{type} :restart, "service[foo]"#{", :#{notification_timing}" if notification_timing} end } end Given /^a cookbook recipe with a resource that (notifies|subscribes) a ([^ ]+) to ([^ ]+)$/ do |type, resource, action| notification = case type when "notifies" then %Q{notifies :#{action}, "#{resource}[foo]"} when "subscribes" then %Q{subscribes :#{action}, resources(:#{resource} => "foo")} end write_recipe %Q{ template "/etc/apache.conf" do #{notification} end } end Given "a cookbook recipe with a resource that uses the old notification syntax" do write_recipe %q{ template "/etc/www/configures-apache.conf" do notifies :restart, resources(:service => "apache") end } end Given /^a cookbook recipe with a '([^']+)' condition for flavours (.*)$/ do |type, flavours| platforms = %Q{"#{flavours.split(',').join('","')}"} if type == "case" @expected_line = 6 write_recipe %Q{ case node[:platform] when "debian", "ubuntu" package "foo" do action :install end when #{platforms} package "bar" do action :install end end }.strip elsif type == "platform?" @expected_line = 1 write_recipe %Q{ if platform?(#{platforms}) package "bar" do action :install end end }.strip else raise "Unrecognised type: #{type}" end end Given "a cookbook recipe with a service resource that does not specify an action" do write_recipe %q{ service "foo" do start_command "/sbin/service foo start" end }.strip end Given "a cookbook recipe with a service resource with an action specified via a variable" do write_recipe %q{ service "foo" do action action end }.strip end Given "a cookbook recipe with multiple execute resources where the last uses git" do write_recipe %q{ execute "one" do command "ls -al" end execute "two" do command "df -H" end execute "three" do command "git clone https://example.org/bar.git" end }.strip end Given "a cookbook template that uses all variables passed" do write_recipe %q{ template "/tmp/config.conf" do source "config.conf.erb" variables( :config_var => node[:configs][:config_var] ) end } write_file "cookbooks/example/templates/default/config.conf.erb", %q{ <%= @config_var %> } end Given /^a cookbook that passes no variables to a template$/ do write_recipe %q{ template "/tmp/config.conf" do source "config.conf.erb" end } end Given /^a cookbook that passes variables (.*) to a template with extension (.*)$/ do |vars, ext| write_recipe %Q{ template "/tmp/config.conf" do source "config#{ext}" variables( :#{vars.split(',').map { |v| "#{v} => node[:#{v}]" }.join(",\n:")} ) end } end Given /^a cookbook that passes variables (.*) to an inferred template$/ do |vars| write_recipe %Q{ template "/tmp/config.conf" do variables( :#{vars.split(',').map { |v| "#{v} => node[:#{v}]" }.join(",\n:")} ) end } end Given /^a cookbook that contains a (short|long) ruby block$/ do |length| recipe_with_ruby_block(length.to_sym) end Given "a cookbook that contains a definition" do write_definition("apache_site", %q{ define :apache_site, :enable => true do log "I am a definition" end }) write_recipe %q{ apache_site "default" } end Given /^a cookbook that contains a LWRP (?:with a single notification|that uses the current notification syntax)$/ do cookbook_with_lwrp({ :notifies => :does_notify }) end Given "a cookbook that contains a LWRP with a single notification without parentheses" do cookbook_with_lwrp({ :notifies => :does_notify_without_parens }) end Given /^a cookbook that contains a LWRP that declares a resource called ([^ ]+) with the condition (.*)$/ do |name, condition| write_resource("site", %q{ actions :create attribute :name, :name_attribute => true }) write_provider("site", %Q{ action :create do execute #{name} do command "echo 'Creating: \#{new_resource.name}'; touch '/tmp/\#{new_resource.name}'" #{condition} end end }) end Given /^a cookbook that contains a LWRP that (?:does not trigger notifications|declares a resource with no condition)$/ do write_resource("site", %q{ actions :create attribute :name, :kind_of => String, :name_attribute => true }) write_provider("site", %q{ action :create do log "Here is where I would create a site" end }) end Given /^a cookbook that contains a LWRP that uses converge_by - (brace|do) block (with|without) parentheses$/ do |block_type, with_parens| write_resource("site", %q{ actions :create attribute :name, :kind_of => String, :name_attribute => true }) if block_type == "brace" write_provider("site", %q{ action :create do converge_by("Creating site #{new_resource.name}"){ Site.new(new_resource.name).create } end }) else if with_parens == "with" write_provider("site", %q{ action :create do converge_by("Creating site #{new_resource.name}") do Site.new(new_resource.name).create end end }) else write_provider("site", %q{ action :create do converge_by "Creating site #{new_resource.name}" do Site.new(new_resource.name).create end end }) end end end Given /^a cookbook that contains a LWRP that uses the deprecated notification syntax(.*)$/ do |qualifier| cookbook_with_lwrp({ :notifies => qualifier.include?("class variable") ? :class_variable : :deprecated_syntax }) end Given "a cookbook that contains a LWRP that uses use_inline_resources" do cookbook_with_lwrp({ :use_inline_resources => true }) end Given "a cookbook that contains a LWRP with multiple notifications" do write_resource("site", %q{ actions :create, :delete attribute :name, :kind_of => String, :name_attribute => true }) write_provider("site", %q{ action :create do log "Here is where I would create a site" new_resource.updated_by_last_action(true) end action :delete do log "Here is where I would delete a site" new_resource.updated_by_last_action(true) end }) end Given /^a cookbook that contains a LWRP with (no|a) default action( defined via a constructor)?$/ do |has_default_action, no_dsl| default_action = if has_default_action == "no" :no_default_action elsif no_dsl.nil? :dsl_default_action else :ruby_default_action end cookbook_with_lwrp({ :default_action => default_action, :notifies => :does_notify }) end Given "a cookbook that contains no ruby blocks" do write_recipe %q{ package "tar" do action :install end } end Given /^a cookbook that declares ([a-z]+) attributes via symbols$/ do |attribute_type| attributes_with_symbols(attribute_type) end Given /^a cookbook that does not contain a definition and has (no|a) definitions directory$/ do |has_dir| create_directory "cookbooks/example/definitions/" unless has_dir == "no" write_recipe %q{ log "A defining characteristic of this cookbook is that it has no definitions" } end Given "a cookbook that does not have a README at all" do write_recipe %q{ log "Use the source luke" } end Given "a cookbook that does not have defined metadata" do write_recipe %q{ include_recipe "foo::default" } end Given /^a cookbook that downloads a file to (.*)$/ do |path| recipe_downloads_file({ "/tmp" => :tmp_dir, "/tmp with an expression" => :tmp_dir_expr, "the Chef file cache" => :chef_file_cache_dir, "a users home directory" => :home_dir }[path]) end Given /^a cookbook that has ([^ ]+) problems$/ do |problems| cookbook_that_matches_rules( problems.split(",").map do |problem| case problem when "no " then next when "style" then "FC002" when "correctness" then "FC006" end end ) end Given "a cookbook that has a README in markdown format" do write_recipe %q{ log "Hello" } write_file "cookbooks/example/README.md", %q{ Description =========== Hi. This is markdown. } end Given "a cookbook that has a README in RDoc format" do write_recipe %q{ log "Hello" } write_file "cookbooks/example/README.rdoc", %q{ = DESCRIPTION: I used to be the preferred format but not any more (sniff). } end Given /^a cookbook that has maintainer metadata set to (.*) and ([^ ]+)$/ do |name, email| cookbook_with_maintainer(nil_if_unspecified(name), nil_if_unspecified(email)) end Given "a cookbook that has the default boilerplate metadata generated by knife" do cookbook_with_maintainer("YOUR_COMPANY_NAME", "YOUR_EMAIL") end Given /^a cookbook that matches rules (.*)$/ do |rules| cookbook_that_matches_rules(rules.split(",")) end Given "a cookbook that matches that rule" do write_recipe %q{ execute "bar" do action :run end } end Given /^a cookbook with a ([^ ]+) that (includes|does not include) a breakpoint$/ do |component, includes| content = case component when "template" then includes == "includes" ? "Hello <% require 'pry'; binding.pry %>" : "Hello World" else includes == "includes" ? "binding.pry" : "# No breakpoint" end write_recipe "" case component when "library" then write_library "foo", content when "metadata" then write_metadata content when "provider" then write_provider "foo", content when "recipe" then write_recipe content when "resource" then write_resource "foo", content when "template" then write_file "cookbooks/example/templates/default/foo.erb", content else raise "Unrecognised component: #{component}" end end Given /^a cookbook with a single recipe for which the first hash (key|value) is an interpolated string$/ do |key_or_value| write_recipe case key_or_value when "key" then %q{{"#{foo}" => 'bar', 'bar' => 'foo'}} when "value" then %q{{'foo' => "#{bar}", 'bar' => 'foo'}} end end Given "a cookbook with a single recipe that mixes node access types in an interpolated value" do write_recipe %q{ execute "interpolated-example" do command "#{node['foo'][:bar]}'" end } end Given "a cookbook with a single recipe that accesses multiple node attributes via symbols" do write_recipe %q{ node[:foo] = 'bar' node[:testing] = 'bar' } end Given "a cookbook with a single recipe that accesses nested node attributes via symbols" do write_recipe %q{node[:foo][:foo2] = 'bar'} end Given "a cookbook with a single recipe that reads node attributes via symbols and quoted_symbols" do write_recipe %q{default[:foo][:'bar-baz']} end Given /^a cookbook with a single recipe that triggers FC019 with comment (.*)$/ do |comment| write_recipe %Q{ file node[:bar] do content node['foo'] #{comment} action:create end }.strip end Given "a cookbook with a single recipe that calls a patched node method" do write_library "search", %q{ class Chef class Node def in_tier?(*tier) tier.flatten.include?(node['tier']) end end end } write_recipe %q{ if node['something']['bar'] || node.in_tier?('foof') Chef::Log.info("Node has been patched") end } end Given /^a cookbook with a single recipe that explicitly calls a node method( with multiple arguments)?$/ do |multi| write_recipe %Q{ if node[:bar] and node.foo(#{multi ? 'bar, baz' : ''}) Chef::Log.info('Explicit node method call should be ignored') end } end Given "a cookbook with a single recipe that passes node attributes accessed via symbols to a template" do write_recipe %q{ template "/etc/foo" do source "foo.erb" variables({ :port => node[:foo][:port], :user => node[:foo][:user] }) end }.strip end Given "a cookbook with a single recipe that uses a hash value to access a node attribute" do write_recipe %q{ some_hash = { :key => "value" } execute "accesses-hash" do command "echo #{node['foo'][some_hash[:key]]}" end }.strip end Given /a(nother)? cookbook with a single recipe that (reads|updates|ignores)(nested)? node attributes via ([a-z,]*)(?:(?: and calls node\.)?([a-z_?]+)?| with (.*)?)(?: only)?$/ do |more_than_one, op, nested, types, method, expr| cookbook_name = more_than_one.nil? ? "example" : "another_example" access = if nested.nil? { :strings => "['foo']", :symbols => "[:foo]", :vivified => ".foo" } else { :strings => "['bar']['baz']", :symbols => "[:fee][:fi][:fo][:fum]", :vivified => ".bar.baz" } end recipe_content = (if types == "none" "log 'hello world'" elsif op == "reads" types.split(",").map { |type| "log node#{access[type.to_sym]}" }.join("\n") else types.split(",").map { |type| "node#{access[type.to_sym]} = 'foo'" }.join("\n") end) recipe_content += "\n#{expr}" unless method.nil? recipe_content += { :platform? => "node.platform?('redhat')", :run_list => "log 'hello' if node.run_list.roles.include?(node[:foo][:bar])", :run_state => "node.run_state[:reboot_requested] = true", :set => "node.set['foo']['bar']['baz'] = 'secret'" }[method.to_sym] end write_recipe(recipe_content, cookbook_name) end Given "a cookbook with a single recipe that searches based on a node attribute accessed via strings" do write_recipe %q{ remote = search(:node, "name:#{node['drbd']['remote_host']}")[0] }.strip end Given "a cookbook with a single recipe which accesses node attributes with symbols on lines 2 and 10" do write_recipe %q{ # Here we access the node attributes via a symbol foo = node[:foo] directory "/tmp/foo" do owner "root" group "root" action :create end bar = node[:bar] } end Given "a cookbook with a single recipe that assigns node attributes accessed via symbols to a local variable" do write_recipe %q{baz = node[:foo]} end Given /^a cookbook with a single recipe that creates a directory resource with (.*)$/ do |path_type| recipe_with_dir_path({ "an interpolated name" => :interpolated_symbol, "an interpolated name from a string" => :interpolated_string, "a string literal" => :string_literal, "a compound expression" => :compound_symbols, "an interpolated variable and a literal" => :interpolated_symbol_and_literal, "a literal and interpolated variable" => :literal_and_interpolated_symbol }[path_type]) end Given "a cookbook with a single recipe that logs an interpolated string heredoc" do write_recipe %q( Chef::Log.warn <<-LOG Warning stuff has gone wrong: #{stuff} LOG ) end Given "a cookbook with a single recipe that searches but checks first (alternation) to see if this is server" do write_recipe %q{ if Chef::Config[:solo] || we_dont_want_to_use_search # set up stuff from attributes else # set up stuff from search nodes = search(:node, "hostname:[* TO *] AND chef_environment:#{node.chef_environment}") end } end Given /^a cookbook with a single recipe that searches but checks first( \(string\))? to see if this is server$/ do |str| write_recipe %Q{ if Chef::Config[#{str ? "'solo'" : ":solo"}] Chef::Log.warn("This recipe uses search. Chef Solo does not support search.") else nodes = search(:node, "hostname:[* TO *] AND chef_environment:#\{node.chef_environment\}") end } end Given "a cookbook with a single recipe that searches but checks first (ternary) to see if this is server" do write_recipe %Q{ required_node = Chef::Config[:solo] ? node : search(:node, query).first } end Given /^a cookbook with a single recipe that searches but checks with a negative first to see if this is server$/ do write_recipe %q{ unless Chef::Config['solo'] nodes = search(:node, "hostname:[* TO *]") else Chef::Log.warn("This recipe uses search. Chef Solo does not support search.") end } end Given /^a cookbook with a single recipe that searches but checks first \(method\) to see if this is server$/ do write_recipe %Q{ if Chef::Config.solo Chef::Log.warn("This recipe uses search. Chef Solo does not support search.") else nodes = search(:node, "hostname:[* TO *] AND chef_environment:#\{node.chef_environment\}") end } end Given /^a cookbook with a single recipe that searches but returns first \((oneline|multiline)\) if search is not supported$/ do |format| if format == "oneline" write_recipe %q{ return Chef::Log.warn("This recipe uses search. Chef Solo does not support search.") if Chef::Config[:solo] nodes = search(:node, "hostname:[* TO *] AND chef_environment:#{node.chef_environment}") } else write_recipe %q{ if Chef::Config[:solo] return Chef::Log.warn("This recipe uses search. Chef Solo does not support search.") end nodes = search(:node, "hostname:[* TO *] AND chef_environment:#{node.chef_environment}") } end end Given "a cookbook with a single recipe that searches without checking if this is server" do write_recipe %q{nodes = search(:node, "hostname:[* TO *] AND chef_environment:#{node.chef_environment}")} end Given "a cookbook with five recipes" do end Given /^a cookbook with metadata that declares a recipe with (.*)$/ do |declaration| write_metadata declaration write_recipe "" end Given /^a cookbook with metadata that (specifies|does not specify) the cookbook name$/ do |specifies| write_metadata %Q{ #{"name 'example'" if specifies == 'specifies'} } end Given /^a cookbook with metadata that (includes|does not include) a maintainer keyword$/ do |includes| write_metadata %Q{ #{"maintainer 'A Maintainer'" if includes == 'includes'} } end Given /^a cookbook with metadata that (includes|does not include) a maintainer email$/ do |includes| write_metadata %Q{ #{"maintainer_email 'maintainer@example.com'" if includes == 'includes'} } end Given "a cookbook with metadata that includes a maintainer expression" do write_metadata "maintainer an(expression)" end Given "a cookbook with metadata that includes a maintainer email expression" do write_metadata "maintainer_email an(expression)" end Given /^a cookbook with metadata that (includes|does not include) a recommends keyword$/ do |includes| write_metadata %Q{ depends "bar" #{"recommends 'foo'" if includes == 'includes'} } end Given /^a cookbook with metadata that (includes|does not include) a suggests keyword$/ do |includes| write_metadata %Q{ depends "bar" #{"suggests 'foo'" if includes == 'includes'} } end Given /^a directory that contains a role file ([^ ]+) in (json|ruby) that defines role name (.*)$/ do |file_name, format, role_name| role(:role_name => %Q{"#{role_name}"}, :file_name => file_name, :format => format.to_sym) end Given "a directory that contains a ruby role that declares the role name more than once" do role(:role_name => ['"webserver"', '"apache"'], :file_name => "webserver.rb") end Given "a directory that contains a ruby role with an expression as its name" do role(:role_name => '"#{foo}#{bar}"', :file_name => "webserver.rb") end Given /^a directory that contains an environment file (.*) in ruby that defines environment name (.*)$/ do |file_name, env_name| environment(:environment_name => %Q{"#{env_name}"}, :file_name => "production.rb") end Given /^a ([a-z_]+) resource declared with the mode ([^\s]+)(?: with comment (.*)?)?$/ do |resource, mode, comment| recipe_resource_with_mode(resource, mode, comment) end Given "a file resource declared without a mode" do write_recipe %q{ file "/tmp/something" do action :delete end } end Given /^a file with multiple errors on one line(?: with comment (.*))?$/ do |comment| write_file "cookbooks/example/recipes/default.rb", %Q{node['run_state']['nginx_force_recompile'] = "\#{foo}"#{comment}} end Given(/^a LWRP with an action :create that notifies with (converge_by|updated_by_last_action) and another :delete that does not notify$/) do |notify_type| cookbook_with_lwrp_actions([ { :name => :create, :notify_type => notify_type.to_sym }, { :name => :delete, :notify_type => :none }, ]) end Given /^(?:a roles|an environments) directory$/ do end Given /^a Rakefile that defines (no lint task|a lint task with no block|a lint task with an empty block|a lint task with a block setting options to)(.*)?$/ do |task, options| rakefile( case task when /no block/ then :no_block when /empty block/ then :empty_block when /a block/ then :block end, options.strip.empty? ? {} : { :options => options.strip }) end Given /^a Rakefile that defines a lint task specifying files to lint as (.*)$/ do |files| rakefile(:block, :files => files) end Given "a Rakefile that defines a lint task specifying a different name" do rakefile(:block, :name => "lint") end Given "a recipe that contains a ruby block without a block attribute" do write_recipe %q{ ruby_block "missing block" do puts "Missing a block attribute" end } end Given "a recipe that contains both long and short ruby blocks" do recipe_with_ruby_block(:both) end Given /^a recipe that declares a ([^ ]+) resource with these attributes: (.*)$/ do |type, attributes| recipe_with_resource(type, attributes.split(",")) end Given "a recipe that declares a resource with an attribute value set to the result of a method call" do write_recipe %q{ cron "run a command at a random minute" do user "root" minute rand(60) command "/usr/bin/whatever" end } end Given "a recipe that declares a resource with only a name attribute" do write_recipe %q{ package 'foo' } end Given "a recipe that declares a resource with recognised attributes and a conditional execution ruby block" do write_recipe %q{ file "/tmp/something" do owner "root" group "root" mode "0755" not_if do require 'foo' Foo.bar?(filename) end action :create end } end Given "a recipe that declares a resource with recognised attributes and a nested block" do write_recipe %q{ deploy_revision "foo" do revision "HEAD" repository "git://github.com/git/git.git" deploy_to "/foo" action :deploy before_migrate do execute "bundle install" do cwd release_path action :run end end end } end Given "a recipe that declares a resource with standard attributes" do write_recipe %q{ file "/tmp/something" do owner "root" group "root" mode "0755" action :create end } end Given "a recipe that declares a user-defined resource" do write_recipe %q{ apple "golden-delicious" do colour "yellow" action :consume end } end Given "a recipe that declares multiple resources of the same type of which one has a bad attribute" do write_recipe %q{ file "/tmp/something" do owner "root" group "root" mode "0755" action :create end file "/tmp/something" do punter "root" group "root" mode "0755" action :create end package "foo" do action :install end } end Given "a resource declared with a guard within a loop with multiple block arguments" do write_recipe %q{ { 'foo' => 'bar', 'baz' => 'bing', }.each do |foo, bar| package bar do not_if { node['foo'] == foo } action :install end end } end Given "a resource that declares a guard containing a block" do write_recipe %q{ template '/etc/foo' do not_if do s = false node['mylist'].each do |realm| s = node['mylist'][realm].empty? break if s end s end owner 'root' group 'root' mode '0644' source 'foo.erb' end } end Given "a resource declared within a definition" do write_recipe %q{ define :toto, { } do [:a, :b].each do |x| package x do not_if { node['foo'] == x } action :install end end end } end Given /^a rule that (declares|does not declare) a version constraint(?: of ([^ ]+)? to ([^ ]+)?)?$/ do |constraint, from, to| if from || to rule_with_version_constraint(from, to) else from_version = case constraint when /not/ then nil else "0.10.6" end rule_with_version_constraint(from_version, nil) end end Given /^a template that includes a partial( that includes the original template again)?$/ do |loops| write_recipe %q{ template "/tmp/a" do source "a.erb" variables({ :config_var => "foo" }) end } write_file "cookbooks/example/templates/default/a.erb", '<%= render "b.erb" %>' content = if loops '<%= render "a.erb" %>' else "<%= @config_var %>" end write_file "cookbooks/example/templates/default/b.erb", content end Given /^a template that includes a (missing )?partial with a relative subdirectory path$/ do |missing| write_recipe %q{ template "/tmp/a" do source "a.erb" variables({ :config_var => "foo" }) end } write_file "cookbooks/example/templates/default/a.erb", '<%= render "partials/b.erb" %>' unless missing write_file "cookbooks/example/templates/default/partials/b.erb", "Partial content" end end Given "access to the man page documentation" do end Given /^another cookbook that has (an older )?chef-solo-search installed$/ do |older| if older.nil? write_library "search", %q{ class Chef module Mixin module Language def search(bag_name, query=nil, sort=nil, start=0, rows=1000, &block) # https://github.com/edelight/chef-solo-search end end end end } else write_library "search", %q{ class Chef class Recipe def search(bag_name, query=nil, sort=nil, start=0, rows=1000, &block) # https://github.com/edelight/chef-solo-search end end end } end end Given "I have installed the lint tool" do end Given "metadata" do write_metadata %q{ name 'example' }.strip end Given /^(?:a cookbook that has|the cookbook has) a Gemfile that includes rake and foodcritic$/ do buildable_gemfile end Given /^the current stable version of Chef (falls|does not fall) within it$/ do |falls_within| rule_with_version_constraint("98.10", nil) unless falls_within.include?("falls") end Given "the gems have been vendored" do vendor_gems end Given "the last role name declared does not match the containing filename" do end Given /^the inferred template contains the expression (.*)$/ do |expr| write_file "cookbooks/example/templates/default/config.conf.erb", %Q{ <%= #{expr} %> } end Given /^the template (.+)?contains the expression (.*)$/ do |ext, expr| file = if ext "templates/default/config#{ext.strip}" else "templates/default/config.conf.erb" end write_file "cookbooks/example/#{file}", %Q{ <%= #{expr} %> } end Given /^the template (.+)?contains partial includes of type (.*) with the expression (.*)$/ do |ext, type, expr| file = if ext "config#{ext.strip}" else "config.conf.erb" end if type == "nested" && expr.split(",").length > 1 expressions = expr.split(",") includes = (1..expressions.length).map { |i| "included_template_#{i}.erb" } (Array(file) + includes).zip(includes).map do |parent, child| content = if child "<%= render '#{child}' %>" else expressions.map { |e| "<%= #{e} %>" }.join("\n") end [parent, content] end.each do |template_name, content| write_file "cookbooks/example/templates/default/#{template_name}", content end else if type == "no parentheses" include_string = "<%= render 'included_template.erb' %>" else include_string = "<%= render('included_template.erb') %>" end write_file "cookbooks/example/templates/default/#{file}", %Q{ #{include_string} } write_file "cookbooks/example/templates/default/included_template.erb", %Q{ <%= #{expr} %> } end end Given "unit tests under a top-level test directory" do minitest_spec_attributes end Given "a recipe that installs a gem with 5 retries" do write_recipe %q{ gem_package "foo" do retries 5 action :install end } end Given "a recipe that creates a raid array with mdadm specifying layout" do write_recipe %q{ mdadm '/dev/md0' do devices [ '/dev/sda', '/dev/sdb', '/dev/sdc', '/dev/sdd' ] level 5 layout 'left-asymmetric' action [ :create, :assemble ] end } end Given "a recipe that tries to mask a systemd service" do write_recipe %q{ service 'foo' do action :mask end } end Given /^a recipe that uses require_recipe$/ do write_recipe %Q{ require_recipe "foo::default" } end Given /^a recipe that uses include_recipe$/ do write_recipe %Q{ include_recipe "foo::default" } end Given /^a ruby environment file that defines an environment with name (.*)$/ do |env_name| environment(:environment_name => %Q{"#{env_name}"}, :file_name => "production.rb") end Given /^a ruby environment that triggers FC050 with comment (.*)$/ do |comment| write_file "environments/production.rb", %Q{ name "Production (eu-west-1)" #{comment} run_list "recipe[apache2]" }.strip end Given /^a ruby role file that defines a role with name (.*)$/ do |role_name| role(:role_name => [%Q{"#{role_name}"}], :file_name => "webserver.rb") end Given /^a ruby role that triggers FC049 with comment (.*)$/ do |comment| write_file "roles/webserver.rb", %Q{ name "apache" #{comment} run_list "recipe[apache2]" }.strip end Given /^a template directory that contains a binary file (.*) that is not valid UTF-8$/ do |filename| template_dir = "cookbooks/example/templates/default" write_recipe "" write_file "#{template_dir}/innocent_template.erb", "<%= hello %>" File.open("#{expand_path('.')}/#{template_dir}/#{filename}", "wb") { |f| f.putc(0x93) } end Given "each role directory has a role with a name that does not match the containing file name" do role(:dir => "roles1", :role_name => '"apache"', :file_name => "webserver.rb") role(:dir => "roles2", :role_name => '"postgresql"', :file_name => "database.rb") end Given /^it contains an environment file (.*\.rb) that defines the environment name (.*)$/ do |file_name, env_name| environment(:environment_name => env_name, :file_name => file_name) end Given /^it contains a role file ([a-z]+\.rb) that defines the role name (.*)$/ do |file_name, role_name| role(:role_name => role_name, :file_name => file_name) end Given /^the cookbook metadata declares support for (.*)$/ do |supported_platforms| write_metadata(supported_platforms.split(",").map do |platform| "supports '#{platform}'" end.join("\n")) end Given "the cookbook metadata declares support with versions specified" do write_metadata %q{ supports 'redhat', '>= 6' supports 'scientific', '>= 6' }.strip end Given "three of the recipes read node attributes via strings" do (1..3).map { |i| "string_#{i}" }.each do |recipe| write_file "cookbooks/example/recipes/#{recipe}.rb", "Chef::Log.warn node['foo']" end end Given "two of the recipes read node attributes via symbols" do (1..2).map { |i| "symbol_#{i}" }.each do |recipe| write_file "cookbooks/example/recipes/#{recipe}.rb", "Chef::Log.warn node[:foo]" end end Given "two roles directories" do end When /^I check the cookbook specifying ([^ ]+) as the Chef version$/ do |version| options = ["-c", version, "cookbooks/example"] cd "." do options = ["-I", "rules/test.rb"] + options if Dir.exist?("rules") end run_lint(options) end When /^I check the cookbook( tree)?(?: specifying tags(.*))?(, specifying that context should be shown)?$/ do |whole_tree, tags, context| options = tags.nil? ? [] : tags.split(" ") options += ["-C"] unless context.nil? run_lint(options + ["cookbooks/#{whole_tree.nil? ? 'example' : ''}"]) end Given /^the cookbook directory has a \.foodcritic file specifying tags (.*)$/ do |tags| write_file "cookbooks/example/.foodcritic", tags run_lint(["cookbooks/example"]) end When "I check both cookbooks specified as arguments" do run_lint(["cookbooks/another_example", "cookbooks/example"]) end When /^I check both cookbooks with the command-line (.*)$/ do |command_line| cmds = command_line.split(" ").map do |c| if c.end_with?("example") "cookbooks/#{c}" else c end end run_lint(cmds) end When "I check both roles directories" do run_lint ["-R", "roles1", "-R", "roles2"] end When "I check the cookbooks, role and environment together" do run_lint([ "-B", "cookbooks/another_example", "-B", "cookbooks/example", "-E", "environments", "-R", "roles" ]) end When "I check the cookbook without specifying a Chef version" do run_lint(["-I", "rules/test.rb", "cookbooks/example"]) end When "I check the environment directory" do run_lint ["-E", "environments"] end When "I check the eu environment file only" do run_lint ["-E", "environments/production_eu.rb"] end When /^I check the cookbook( without)? excluding the ([^ ]+) directory$/ do |no_exclude, dir| options = no_exclude.nil? ? ["-X", dir] : [] run_lint(options + ["cookbooks/example"]) end When "I check the recipe" do run_lint(["cookbooks/example/recipes/default.rb"]) end When "I compare the man page options against the usage options" do end When "I check the role directory" do run_lint ["-R", "roles"] end When /^I check the role directory as a (default|cookbook|role) path$/ do |path_type| options = case path_type when "default" then ["roles"] when "cookbook" then ["-B", "roles"] when "role" then ["-R", "roles"] end run_lint(options) end When "I check the webserver role only" do run_lint ["-R", "roles/webserver.rb"] end When "I list the available build tasks" do list_available_build_tasks end When /^I run it on the command line including a custom rule (file|directory) containing a rule that matches$/ do |path_type| write_file "rules/custom_rules.rb", %q{ rule "BAR001", "Use symbols in preference to strings to access node attributes" do tags %w{style attributes} recipe do |ast| attribute_access(ast, :type => :string).map{|ar| match(ar)} end end } run_lint(["-I", path_type == "file" ? "rules/custom_rules.rb" : "rules", "cookbooks/example"]) end When /^I run it on the command line including a file which does not contain Ruby code$/ do write_file "rules/invalid_rules.rb", 'echo "not ruby"' capture_error do run_lint(["-I", "rules/invalid_rules.rb", "cookbooks/example"]) end end When /^I run it on the command line including a missing custom rule file$/ do capture_error do run_lint(["-I", "rules/missing_rules.rb", "cookbooks/example"]) end end When "I run it on the command line specifying a cookbook that does not exist" do run_lint(["no-such-cookbook"]) end When /^I run it on the command line specifying a( role|n environment) directory that does not exist$/ do |type| if type.include?("role") run_lint(["-R", "no-such-role-dir"]) else run_lint(["-E", "no-such-environment-dir"]) end end When "I run it on the command line with no arguments" do run_lint([]) end When /^I run it on the command line with the (?:unimplemented |)([^ ]+) option( with an argument)?$/ do |option, with_argument| options = [] if option =~ /\-\w$/ options << option else options << "--#{option}" end options << "cookbooks/example" unless with_argument.nil? run_lint(options) end When "I run the build" do run_build end Then "a warning for the custom rule should be displayed" do expect_output("BAR001: Use symbols in preference to strings to access node attributes: cookbooks/example/recipes/default.rb:1") end Then "all options should be documented in the man page" do man_page_options.must_equal usage_options_for_diff end Then /^an? '([^']+)' error should be displayed$/ do |expected_error| last_error.must_include expected_error end Then "the attribute consistency warning 019 should be shown for both of the recipes that use symbols" do expect_warning "FC019", :file => "recipes/symbol_1.rb" expect_warning "FC019", :file => "recipes/symbol_2.rb" end Then /^the bare attribute keys warning 044 should not be displayed against the (brace|do) block$/ do |block_type| line = block_type == "brace" ? 2 : 3 expect_warning "FC044", { :expect_warning => false, :line => line, :file_type => :attributes } end Then /^the bare attribute keys warning 044 should not be displayed against the (?:local variable|library call)$/ do expect_warning "FC044", { :expect_warning => false, :line => 2, :file_type => :attributes } end Then /^the bare attribute keys warning 044 should not be displayed against the new line$/ do expect_warning "FC044", { :expect_warning => false, :line => 3, :file_type => :attributes } end Then "the execute resource used to run git commands warning 040 should be displayed against the last resource" do expect_warning "FC040", { :line => 7 } end Then /^the LWRP does not notify when updated warning 017 should( not)? be shown against the :([^ ]+) action$/ do |not_shown, action| line = action == "create" ? 1 : 8 expect_warning("FC017", :file_type => :provider, :expect_warning => ! not_shown, :line => line) end Then /^the invalid (role|environment) name warning 050 should( not)? be shown$/ do |type, not_shown| file = type == "role" ? "roles/webserver.rb" : "environments/production.rb" expect_warning "FC050", { :expect_warning => ! not_shown, :file => file } end Then /^the invalid environment name warning 050 should( not)? be shown against the (eu|us) environment$/ do |not_shown, env| expect_warning "FC050", { :expect_warning => ! not_shown, :file => "environments/production_#{env}.rb", :line => 1 } end Then "the prefer mixlib shellout warning 048 should not be displayed against the group resource" do expect_warning "FC048", { :expect_warning => false, :line => 2 } end Then "the prefer mixlib shellout warning 048 should not be displayed against the user resource" do expect_warning "FC048", { :expect_warning => false, :line => 2 } end Then "the prefer mixlib shellout warning 048 should be displayed against the ruby_block resource" do expect_warning("FC048", :file_type => :provider, :line => 4) end Then /^the role name does not match file name warning 049 should( not)? be shown( against the second name)?$/ do |not_shown, second| expect_warning "FC049", { :expect_warning => ! not_shown, :file => "roles/webserver.rb", :line => second ? 2 : 1 } end Then "the role name does not match file name warning 049 should be shown against the files in both directories" do expect_warning "FC049", { :file => "roles1/webserver.rb", :line => 1 } expect_warning "FC049", { :file => "roles2/database.rb", :line => 1 } end Then /^the role name does not match file name warning 049 should( not)? be shown against the (webserver|database) role$/ do |not_shown, role| expect_warning "FC049", { :expect_warning => ! not_shown, :file => "roles/#{role}.rb", :line => 1 } end Then "the long ruby block warning 014 should be displayed against the long block only" do expect_warning "FC014", { :expect_warning => false, :line => 1 } expect_warning "FC014", { :expect_warning => true, :line => 11 } end Then /^the lint task will be listed( under the different name)?$/ do |diff_name| expected_name = diff_name ? "lint" : "foodcritic" build_tasks.must_include([expected_name, "Lint Chef cookbooks"]) end Then "no error should have occurred" do assert_no_error_occurred end Then /^(no )?warnings will be displayed against the tests$/ do |no_display| if no_display.nil? assert_test_warnings else assert_no_test_warnings end end Then "the attribute consistency warning 019 should warn on lines 2 and 10 in that order" do expected_warnings = [2, 10].map do |line| "FC019: Access node attributes in a consistent manner: cookbooks/example/recipes/default.rb:#{line}" end expect_output(expected_warnings.join("\n")) end Then "the attribute consistency warning 019 should be displayed for the recipe" do expect_warning("FC019", :line => 2) end Then "the attribute consistency warning 019 should not be displayed for the attributes" do expect_warning("FC019", :file_type => :attributes, :line => 1, :expect_warning => false) end Then /^the warning ([0-9]+ )?should (not )?be (?:displayed|shown)$/ do |warning, should_not| code = warning.nil? ? "FCTEST001" : "FC#{warning.strip}" expect_warning code, { :expect_warning => should_not.nil? } end Then /^the (?:[a-zA-Z \-_]+) warning ([0-9]+) should (not )?be displayed(?: against the (attributes|libraries|definition|metadata|provider|resource|README.md|README.rdoc) file)?( below)?(?: on (?:(any line)|(?:line ([0-9]+))))?$/ do |code, no_display, file, warning_only, any_line, line| options = {} options[:expect_warning] = no_display != "not " unless file.nil? if file.include?(".") options[:file] = file else options[:file_type] = file.to_sym end end options[:line] = 3 if code == "018" && options[:expect_warning] options[:line] = 2 if %w{021 022}.include?(code) if any_line options[:line] = nil else options[:line] = line unless line.nil? end options[:warning_only] = ! warning_only.nil? expect_warning("FC#{code}", options) end Then /^the attribute consistency warning 019 should be (shown|not shown)$/ do |show_warning| expect_warning("FC019", :line => nil, :expect_warning => show_warning == "shown") end Then /^the boilerplate metadata warning 008 should warn on lines (.*)$/ do |lines_to_warn| if lines_to_warn.strip == "" expect_no_warning("FC008") else lines_to_warn.split(",").each { |line| expect_warning("FC008", :line => line, :file => "metadata.rb") } end end Then /the build status should be (successful|failed)$/ do |build_outcome| build_outcome == "successful" ? assert_no_error_occurred : assert_error_occurred end Then /^the build will (succeed|fail) with (?:no )?warnings(.*)$/ do |build_outcome, warnings| assert_build_result(build_outcome == "succeed", warnings.delete(" ").split(",")) end Then "the check for server warning 003 should not be displayed against the condition" do expect_warning("FC003", :line => nil, :expect_warning => false) end Then /^the check for server warning 003 should not be displayed against the search after the (.*) conditional$/ do |format| line = format == "oneline" ? 2 : 4 expect_warning("FC003", :line => line, :expect_warning => false) end Then "the check for server warning 003 should not be displayed given we have checked" do expect_warning("FC003", :line => 4, :expect_warning => false) end Then /^the consider adding platform warning 024 should( not)? be shown$/ do |should_not| expect_warning("FC024", :line => should_not.nil? ? @expected_line : nil, :expect_warning => should_not.nil?) end Then /^the conditional block contains only string warning 026 should be (shown|not shown)$/ do |show_warning| expect_warning("FC026", :line => nil, :expect_warning => show_warning == "shown") end Then /^the current version should( not)? be displayed$/ do |no_display| version_str = "foodcritic #{FoodCritic::VERSION}" if no_display.nil? expect_output(version_str) else expect_no_output(version_str) end end Then /^the debugger breakpoint warning 030 should be (not )?shown against the (.*)$/ do |should_not, component| filename = case component when "library" then "libraries/foo.rb" when "metadata" then "metadata.rb" when "provider" then "providers/foo.rb" when "recipe" then "recipes/default.rb" when "resource" then "resources/foo.rb" when "template" then "templates/default/foo.erb" end expect_warning("FC030", :line => nil, :expect_warning => should_not.nil?, :file => filename) end Then "the dodgy resource condition warning 022 should not be shown" do expect_warning("FC022", { :line => nil, :expect_warning => false }) end Then /^the warning (\d+) should be (valid|invalid)$/ do |code, valid| code = "FC#{code}" valid == "valid" ? expect_no_warning(code) : expect_warning(code) end Then /^the incorrect platform usage warning 028 should be (not )?shown$/ do |should_not| expect_warning("FC028", :line => nil, :expect_warning => should_not.nil?) end Then /^the line number and line of code that triggered the warning(s)? should be displayed$/ do |multiple| if multiple.nil? expect_line_shown 1, "log node[:foo]" else expect_line_shown 1, "node[:foo] = 'bar'" expect_line_shown 2, " node[:testing] = 'bar'" end end Then "the missing template warning 033 should not be displayed against the template" do expect_warning("FC033", :line => 3, :expect_warning => false) end Then /^the no leading cookbook name warning 029 should be (not )?shown$/ do |should_not| expect_warning("FC029", :line => 1, :expect_warning => should_not.nil?, :file => "metadata.rb") end Then "the node access warning 001 should be displayed for each match" do expect_warning("FC001", :line => 1) expect_warning("FC001", :line => 2) end Then "the node access warning 001 should be displayed against the variables" do expect_warning("FC001", :line => 4) expect_warning("FC001", :line => 5) end Then "the node access warning 001 should be displayed twice for the same line" do expect_warning("FC001", :line => 1, :num_occurrences => 2) end Then "the node access warning 001 should warn on lines 2 and 10 in that order" do expected_warnings = [2, 10].map do |line| "FC001: Use strings in preference to symbols to access node attributes: cookbooks/example/recipes/default.rb:#{line}" end expect_output(expected_warnings.join("\n")) end Then "the node access warning 001 should be displayed for the recipe" do expect_warning("FC001") end Then "the node access warning 001 should not be displayed for the attributes" do expect_warning("FC001", :file_type => :attributes, :line => 1, :expect_warning => false) end Then "the prefer chef_gem to manual install warning 025 should be shown" do expect_warning("FC025", :line => nil) end Then "the recipe filename should be displayed" do expect_output "cookbooks/example/recipes/default.rb" end Then /^the resource sets internal attribute warning 027 should be (not )?shown$/ do |should_not| expect_warning("FC027", :line => nil, :expect_warning => should_not.nil?) end Then /^the service resource warning 005 should( not)? be visible$/ do |dont_show| expect_warning("FC005", :line => dont_show ? 2 : 7, :expect_warning => ! dont_show) end Then /^the service resource warning 005 should( not)? be displayed against the first resource in the block$/ do |dont_show| expect_warning("FC005", :line => 2, :expect_warning => ! dont_show) end Then /^the service resource warning 005 should( not)? be shown$/ do |dont_show| expect_warning("FC005", :line => 2, :file_type => :provider, :expect_warning => ! dont_show) end Then /^the simple usage text should be displayed along with a (non-)?zero exit code$/ do |non_zero| usage_displayed(non_zero.nil?) end Then /^the template partials loop indefinitely warning 051 should (not )?be displayed against the templates$/ do |not_shown| expect_warning("FC051", :file => "templates/default/a.erb", :line => 1, :expect_warning => ! not_shown) expect_warning("FC051", :file => "templates/default/b.erb", :line => 1, :expect_warning => ! not_shown) end Then "the undeclared dependency warning 007 should be displayed only for the undeclared dependencies" do expect_warning("FC007", :file => "recipes/default.rb", :line => 1, :expect_warning => false) expect_warning("FC007", :file => "recipes/default.rb", :line => 2, :expect_warning => false) expect_warning("FC007", :file => "recipes/default.rb", :line => 6, :expect_warning => true) end Then /^the unused template variables warning 034 should (not )?be displayed against the (?:inferred )?template(.*)?$/ do |not_shown, ext| file = if ext.empty? "templates/default/config.conf.erb" else "templates/default/config#{ext.strip}" end expect_warning("FC034", :file => file, :line => 1, :expect_warning => ! not_shown) end Then /^the unrecognised attribute warning 009 should be (true|false)$/ do |shown| shown == "true" ? expect_warning("FC009") : expect_no_warning("FC009") end Then /^the invalid resource action warning 038 should be (true|false)$/ do |shown| shown == "true" ? expect_warning("FC038") : expect_no_warning("FC038") end Then "the unrecognised attribute warning 009 should be displayed against the correct resource" do expect_warning("FC009", :line => 7) end Then "the usage text should include an option for specifying tags that will fail the build" do expect_usage_option("f", "epic-fail TAGS", "Fail the build based on tags. Use 'any' to fail on all warnings.") end Then /^the warnings shown should be (.*)$/ do |warnings| warnings.split(",").each { |warning| expect_warning(warning, :line => nil) } end When /^I check the cookbook specifying a search grammar that (does not exist|is not in treetop format|is a valid treetop grammar)$/ do |search_grammar| case search_grammar when "is not in treetop format" write_file("search.treetop", "I am not a valid treetop grammar") when "is a valid treetop grammar" write_file("search.treetop", IO.read(FoodCritic::Chef::Search.new.chef_search_grammars.first)) end run_lint(["--search-grammar", "search.treetop", "cookbooks/example"]) end Then /^the check should abort with an error$/ do assert_error_occurred end Given(/^a cookbook with an? (.*) file with an interpolated name$/) do |file_type| content = %q{ a = "#{node.hostname}" } write_recipe content if file_type == "recipe" write_attributes content if file_type == "attribute" write_metadata content if file_type == "metadata" write_provider "site", content if file_type == "provider" write_resource "site", content if file_type == "resource" write_definition "apache_site", content if file_type == "definition" write_library "lib", content if file_type == "library" end Then /^the metadata missing maintainer warning 055 should be (shown|not shown) against the metadata file$/ do |show_warning| expect_warning("FC055", :file => "metadata.rb", :expect_warning => show_warning == "shown") end Then /^the metadata missing maintainer email warning 056 should be (shown|not shown) against the metadata file$/ do |show_warning| expect_warning("FC056", :file => "metadata.rb", :expect_warning => show_warning == "shown") end Then /^the metadata using suggests warning 052 should be (shown|not shown) against the metadata file$/ do |show_warning| expect_warning("FC052", :file => "metadata.rb", :line => 2, :expect_warning => show_warning == "shown") end Then /^the metadata using recommends warning 053 should be (shown|not shown) against the metadata file$/ do |show_warning| expect_warning("FC053", :file => "metadata.rb", :line => 2, :expect_warning => show_warning == "shown") end Given /^a cookbook that contains a LWRP provider (with|without) use_inline_resources( and uses def action_create)?$/ do |with_use_inline_resources, uses_def| write_resource("site", %q{ actions :create attribute :name, :kind_of => String, :name_attribute => true }) provider_file = "" if with_use_inline_resources == "with" provider_file += %q{ use_inline_resources } end if uses_def provider_file += %q{ def action_create } else provider_file += %q{ action :create do } end provider_file += %q{ file "/tmp/foo.txt" end } write_provider("site", provider_file) end Given /^a cookbook that contains a library provider (with|without) use_inline_resources( and uses def action_create)?$/ do |with_use_inline_resources, uses_def| library_file = %q{ class MyResources class Site < Chef::Resource::LWRPBase provides :site resource_name :site actions :create attribute :name, :kind_of => String, :name_attribute => true end end class MyProviders class Site < Chef::Provider::LWRPBase provides :site } if with_use_inline_resources == "with" library_file += %q{ use_inline_resources } end if uses_def library_file += %q{ def action_create } else library_file += %q{ action :create do } end library_file += %q{ file "/tmp/foo.txt" end end end } write_library("lib", library_file) end Given /^a cookbook that contains a library resource$/ do library_file = %q{ class MyResources class Site < Chef::Resource::LWRPBase provides :site resource_name :site actions :create attribute :name, :kind_of => String, :name_attribute => true end end } write_library("lib", library_file) end Given "a cookbook with metadata that includes the version keyword and a valid version string" do write_metadata %q{version '1.2.3'} end Given "a cookbook with metadata that includes the version keyword and a valid version string with double quotes" do write_metadata %q{version '1.2.3'} end Given "a cookbook with metadata that includes the version keyword and a valid x.y version string" do write_metadata %q{version '1.2'} end Given "a cookbook with metadata that does not include a version keyword" do write_metadata %Q{ name 'test' } end Given "a cookbook with metadata that includes the version keyword and an invalid version string" do write_metadata %q{version '1.a.3'} end Given "a cookbook with metadata that includes the version keyword and an invalid single digit version string" do write_metadata %q{version '1'} end Given "a cookbook with metadata that includes the version keyword and an invalid 4 digit version string" do write_metadata %q{version '1.2.3.4'} end Given "a cookbook with a metadata version that uses string interpolation" do write_metadata %q{ patch = 3 version "1.2.#{patch}" } end Given "a cookbook with a metadata version that is not a string literal" do write_metadata %q{ v = "1.2.3" version v } end Given "a cookbook with a metadata version that is a method call" do write_metadata %q{ version magic_version_generator('and its args') } end Given(/^a cookbook with metadata that (includes|does not include) a self dependency$/) do |includes| write_metadata %Q{ name 'bar' depends 'baz' #{"depends 'bar'" if includes == 'includes'} } end Then(/^the metadata with self dependency warning 063 should be (shown|not shown) against the metadata file$/) do |show_warning| if show_warning == "shown" expect_warning("FC063", :file => "metadata.rb", :line => 3, :expect_warning => true) else expect_warning("FC063", :file => "metadata.rb", :expect_warning => false) end end Given(/^a cookbook with metadata that (includes|does not include) a issues_url keyword$/) do |includes| write_metadata %Q{ #{"issues_url 'http://github.com/foo/bar_cookbook/issues'" if includes == 'includes'} } end Given(/^a cookbook with metadata that includes a issues_url expression$/) do write_metadata "issues_url an(expression)" end Then(/^the metadata missing issues_url warning 064 should be (shown|not shown) against the metadata file$/) do |show_warning| expect_warning("FC064", :file => "metadata.rb", :expect_warning => show_warning == "shown") end Given(/^a cookbook with metadata that (includes|does not include) a source_url keyword$/) do |includes| write_metadata %Q{ #{"source_url 'http://github.com/foo/bar_cookbook/'" if includes == 'includes'} } end Then(/^the metadata missing source_url warning 065 should be (shown|not shown) against the metadata file$/) do |show_warning| expect_warning("FC065", :file => "metadata.rb", :expect_warning => show_warning == "shown") end Given(/^a cookbook with metadata that includes a source_url expression$/) do write_metadata "source_url an(expression)" end foodcritic-8.1.0/features/042_check_for_deprecated_require_recipe.feature0000644000004100000410000000110513005226016026633 0ustar www-datawww-dataFeature: Check for deprecated require recipe In order to prevent failure of my cookbooks in future versions of Chef As a developer I want to use include_recipe in preference to require_recipe Scenario: Recipe uses require_recipe Given a recipe that uses require_recipe When I check the cookbook Then the require_recipe deprecated warning 042 should be displayed Scenario: Recipe does not use require_recipe Given a recipe that uses include_recipe When I check the cookbook Then the require_recipe deprecated warning 042 should not be displayed foodcritic-8.1.0/features/008_check_for_boilerplate_metadata.feature0000644000004100000410000000230313005226016025615 0ustar www-datawww-dataFeature: Check for boilerplate metadata In order to ensure that recipe metadata is accurate As a developer I want to identify metadata that has not been changed from the generated defaults Scenario: Unmodified knife generated metadata Given a cookbook that has the default boilerplate metadata generated by knife When I check the cookbook Then the boilerplate metadata warning 008 should be displayed against the metadata file Scenario Outline: Boilerplate maintainer metadata Given a cookbook that has maintainer metadata set to and When I check the cookbook Then the boilerplate metadata warning 008 should warn on lines Examples: | maintainer | maintainer_email | lines | | unspecified | unspecified | | | YOUR_COMPANY_NAME | unspecified | 1 | | unspecified | YOUR_EMAIL | 1 | | YOUR_COMPANY_NAME | foo@example.com | 1 | | Example Ltd | YOUR_EMAIL | 2 | | YOUR_COMPANY_NAME | YOUR_EMAIL | 1,2 | | Example Ltd | foo@example.com | | foodcritic-8.1.0/features/026_check_for_conditional_block_string.feature0000644000004100000410000000167113005226016026525 0ustar www-datawww-dataFeature: Check for conditional attribute blocks with only strings In order to avoid wrongly actioning a resource As a developer I want to identify conditional attribute blocks that consist only of strings Scenario Outline: Given a cookbook recipe that declares a resource with a When I check the cookbook Then the conditional block contains only string warning 026 should be Examples: | conditional_attribute | show_warning | | not_if { "ls foo" } | shown | | not_if do "ls foo" end | shown | | only_if { "ls #{node['foo']['path']}" } | shown | | not_if { "ls #{foo.method()}" } | shown | | only_if { foo.bar } | not shown | | not_if { foo.to_s } | not shown | | not_if { File.exists?("/etc/foo") } | not shown | foodcritic-8.1.0/features/034_check_for_unused_template_variables.feature0000644000004100000410000001264613005226016026713 0ustar www-datawww-dataFeature: Check for unused template variables In order to identify failure to parameterise template variables As a developer I want to identify variables passed to templates that are not used Scenario: All variables present in template Given a cookbook template that uses all variables passed When I check the cookbook Then the unused template variables warning 034 should not be displayed Scenario Outline: No variables passed Given a cookbook that passes no variables to a template And the template contains the expression When I check the cookbook Then the unused template variables warning 034 should not be displayed against the template Examples: | expression | | node[:configs][:config_var] | | @config_var | Scenario Outline: Variables passed Given a cookbook that passes variables to a template with extension And the template contains the expression When I check the cookbook Then the unused template variables warning 034 be displayed against the template Examples: | variables | expression | extension | displayed | | config_var | node[:configs][:config_var] | .conf.erb | should | | config_var | @config_var | .conf.erb | should not | | config_var | @config_var['foo'] | .conf.erb | should not | | config_var | node[:configs][:config_var] | .conf.erb | should | | config_var,another_var | node[:configs][:config_var] | .conf.erb | should | | config_var,another_var | @config_var | .conf.erb | should | | config_var,another_var | @another_var | .conf.erb | should | | config_var | @config_var | .conf | should not | | config_var,another_var | @another_var | .conf | should | Scenario Outline: Variables passed with includes Given a cookbook that passes variables to a template with extension And the template contains partial includes of type with the expression When I check the cookbook Then the unused template variables warning 034 be displayed against the template Examples: | variables | expression | type | extension | displayed | | config_var | node[:configs][:config_var] | no parentheses | .conf.erb | should | | config_var | @config_var | no parentheses | .conf.erb | should not | | config_var | @config_var['foo'] | no parentheses | .conf.erb | should not | | config_var | node[:configs][:config_var] | no parentheses | .conf.erb | should | | config_var,another_var | node[:configs][:config_var] | no parentheses | .conf.erb | should | | config_var,another_var | @config_var | no parentheses | .conf.erb | should | | config_var,another_var | @another_var | no parentheses | .conf.erb | should | | config_var | @config_var | no parentheses | .conf | should not | | config_var,another_var | @another_var | no parentheses | .conf | should | | config_var | node[:configs][:config_var] | parentheses | .conf.erb | should | | config_var | @config_var | parentheses | .conf.erb | should not | | config_var | @config_var['foo'] | parentheses | .conf.erb | should not | | config_var | node[:configs][:config_var] | parentheses | .conf.erb | should | | config_var,another_var | node[:configs][:config_var] | parentheses | .conf.erb | should | | config_var,another_var | @config_var | parentheses | .conf.erb | should | | config_var,another_var | @another_var | parentheses | .conf.erb | should | | config_var | @config_var | parentheses | .conf | should not | | config_var,another_var | @another_var | parentheses | .conf | should | | config_var,another_var | @config_var,@another_var | nested | .conf | should not | | config_var,another_var | @config_var | nested | .conf | should | Scenario Outline: Template path is inferred Given a cookbook that passes variables to an inferred template And the inferred template contains the expression When I check the cookbook Then the unused template variables warning 034 be displayed against the inferred template Examples: | variables | expression | displayed | | config_var | node[:configs][:config_var] | should | | config_var | @config_var | should not | Scenario: Template includes contain cycle Given a template that includes a partial that includes the original template again When I check the cookbook Then the unused template variables warning 034 should not be displayed And no error should have occurred foodcritic-8.1.0/features/015_check_for_definitions.feature0000644000004100000410000000207313005226016023770 0ustar www-datawww-dataFeature: Check for use of definitions In order to benefit from the additional features supported by first-class resources As a developer I want to identify when definitions are being used so they can be refactored to become Custom Resources Scenario: Cookbook contains definition Given a cookbook that contains a definition When I check the cookbook Then the definitions are deprecated warning 015 should be displayed against the definition file Scenario: Cookbook does not contain a definition - no directory Given a cookbook that does not contain a definition and has no definitions directory When I check the cookbook Then the definitions are deprecated warning 015 should not be displayed against the definition file And no error should have occurred Scenario: Cookbook does not contain a definition - directory Given a cookbook that does not contain a definition and has a definitions directory When I check the cookbook Then the definitions are deprecated warning 015 should not be displayed against the definition file foodcritic-8.1.0/features/012_check_for_deprecated_readme_format.feature0000644000004100000410000000164513005226016026443 0ustar www-datawww-dataFeature: Check for deprecated README format In order to ensure that my cookbook README renders nicely on Supermarket As a developer I want to identify if my cookbook is using an older-style RDoc format that needs converting Scenario: Cookbook missing RDoc formatted README Given a cookbook that does not have a README at all When I check the cookbook Then the deprecated format warning 012 should not be displayed against the README.rdoc file Scenario: Cookbook has RDoc formatted README Given a cookbook that has a README in RDoc format When I check the cookbook Then the deprecated format warning 012 should be displayed against the README.rdoc file Scenario: Cookbook has an alternatively formatted README Given a cookbook that has a README in markdown format When I check the cookbook Then the deprecated format warning 012 should not be displayed against the README.rdoc file foodcritic-8.1.0/features/024_check_for_missing_platforms.feature0000644000004100000410000000676413005226016025230 0ustar www-datawww-dataFeature: Check for missing platforms In order to maximise the portability of my cookbooks As a developer I want to identify when a recipe misses a popular flavour from a platform family Scenario Outline: Platform flavour missing Given a cookbook recipe with a '' condition for flavours And the cookbook metadata declares support for When I check the cookbook Then the consider adding platform warning 024 Examples: | type | supports | flavours | warning | | case | | chalk,cheese | should not be shown | | case | | debian,ubuntu | should not be shown | | case | | amazon,centos,redhat,scientific,oracle | should not be shown | | case | | centos,redhat,amazon,scientific,oracle | should not be shown | | case | | centos,debian,fedora,redhat,amazon,scientific,oracle | should not be shown | | case | | redhat | should not be shown | | case | | centos,redhat | should be shown | | case | centos,redhat | centos,redhat | should not be shown | | case | | centos,redhat,scientific | should be shown | | case | centos,redhat,scientific | centos,redhat,scientific | should not be shown | | case | centos,debian,scientific | centos,scientific | should not be shown | | case | centos,redhat,scientific | redhat,scientific | should be shown | | case | debian,redhat,centos,fedora | redhat,centos,fedora | should not be shown | | platform? | | centos,redhat,amazon,scientific,oracle | should not be shown | | platform? | | redhat | should not be shown | | platform? | | redhat,scientific | should be shown | | platform? | redhat,scientific | redhat,scientific | should not be shown | | platform? | centos,redhat,scientific | centos,scientific | should be shown | | platform? | centos,redhat,oracle | centos,redhat | should be shown | Scenario: Supported platforms specifies versions Given a cookbook recipe with a 'case' condition for flavours 'redhat,scientific' And the cookbook metadata declares support with versions specified When I check the cookbook Then the consider adding platform warning 024 should not be shown Scenario: Unrelated case statement Given a cookbook recipe with a case condition unrelated to platform When I check the cookbook Then the consider adding platform warning 024 should not be shown foodcritic-8.1.0/features/051_check_for_template_partial_loops.feature0000644000004100000410000000361513005226016026223 0ustar www-datawww-dataFeature: Check for template partial includes cycle In order to avoid failures at converge time As a developer I want to identify when a template uses partials that would loop Scenario: Template without includes Given a cookbook recipe that refers to a template When I check the cookbook Then the template partials loop indefinitely warning 051 should not be displayed against the templates Scenario: Template includes do not cycle Given a template that includes a partial When I check the cookbook Then the template partials loop indefinitely warning 051 should not be displayed against the templates Scenario: Template includes contain cycle Given a template that includes a partial that includes the original template again When I check the cookbook Then the template partials loop indefinitely warning 051 should be displayed against the templates And no error should have occurred Scenario: Relative partial Given a template that includes a partial with a relative subdirectory path When I check the cookbook Then the template partials loop indefinitely warning 051 should not be displayed against the templates And no error should have occurred Scenario: Missing partial Given a template that includes a missing partial with a relative subdirectory path When I check the cookbook Then the template partials loop indefinitely warning 051 should not be displayed against the templates And no error should have occurred Scenario Outline: Template directory contains binary files Given a template directory that contains a binary file that is not valid UTF-8 When I check the cookbook Then the template partials loop indefinitely warning 051 should not be displayed against the templates And no error should have occurred Examples: | file | | .DS_Store | | foo.erb.swp | foodcritic-8.1.0/features/061_valid_cookbook_version_should_be_defined.feature0000644000004100000410000000614213005226016027710 0ustar www-datawww-dataFeature: Defined cookbook version should be valid In order to ensure that recipe metadata is stable As a developer I want to identify metadata that does not define a valid verison for the cookbook Scenario: Metadata with the version keyword and a valid version Given a cookbook with metadata that includes the version keyword and a valid version string When I check the cookbook Then the metadata defines valid version warning 061 should not be displayed against the metadata file Scenario: Metadata with the version keyword and a valid version with double quotes Given a cookbook with metadata that includes the version keyword and a valid version string with double quotes When I check the cookbook Then the metadata defines valid version warning 061 should not be displayed against the metadata file Scenario: Metadata with the version keyword and a valid x.y version Given a cookbook with metadata that includes the version keyword and a valid x.y version string When I check the cookbook Then the metadata defines valid version warning 061 should not be displayed against the metadata file Scenario: Metadata without the version keyword Given a cookbook with metadata that does not include a version keyword When I check the cookbook Then the metadata defines valid version warning 061 should not be displayed against the metadata file Scenario: Metadata with the version keyword and an invalid version Given a cookbook with metadata that includes the version keyword and an invalid version string When I check the cookbook Then the metadata defines valid version warning 061 should be displayed against the metadata file Scenario: Metadata with the version keyword and an invalid single digit version Given a cookbook with metadata that includes the version keyword and an invalid single digit version string When I check the cookbook Then the metadata defines valid version warning 061 should be displayed against the metadata file Scenario: Metadata with the version keyword and an invalid 4 digit version Given a cookbook with metadata that includes the version keyword and an invalid 4 digit version string When I check the cookbook Then the metadata defines valid version warning 061 should be displayed against the metadata file Scenario: Metadata version that uses string interpolation Given a cookbook with a metadata version that uses string interpolation When I check the cookbook Then the metadata defines valid version warning 061 should not be displayed against the metadata file Scenario: Metadata version that is not a string literal Given a cookbook with a metadata version that is not a string literal When I check the cookbook Then the metadata defines valid version warning 061 should not be displayed against the metadata file Scenario: Metadata version that is a method call Given a cookbook with a metadata version that is a method call When I check the cookbook Then the metadata defines valid version warning 061 should not be displayed against the metadata file foodcritic-8.1.0/features/039_check_for_key_access_to_node_methods.feature0000644000004100000410000000263413005226016027031 0ustar www-datawww-dataFeature: Check for key access to node methods In order to avoid failure at converge time As a developer I want to identify attempts to access node methods as attributes Scenario Outline: Resource actions Given a cookbook recipe that refers to When I check the cookbook Then the node method cannot be accessed with key warning 039 be displayed Examples: | node_access | display | | node['foo'] | should not | | node[:foo] | should not | | node.foo | should not | | node.chef_environment | should not | | node[:chef_environment] | should | | node['chef_environment'] | should | | node.run_state['foo'] | should not | | node.run_state[:foo] | should not | | node.run_state.foo | should not | | node['run_state']['foo'] | should | | node[:run_state][:foo] | should | | node['foo']['run_state'] | should not | | node[:foo][:run_state] | should not | | node['tags'] | should not | | node[:tags] | should not | | node.tags | should not | Scenario: Expressions that look like node access Given a cookbook recipe that has a confusingly named local variable "default" When I check the cookbook Then the node method cannot be accessed with key warning 039 should not be displayed foodcritic-8.1.0/features/060_check_for_lwrp_provider_bad_action_methods.feature0000644000004100000410000000302713005226016030241 0ustar www-datawww-dataFeature: Check for LWRP providers that declare use_inline_resources and declare action_ methods In order to ensure that notifications happen correctly As a cookbook provider author I want to always use_inline_resources Scenario: LWRP provider with use_inline_resources and bad action_create Given a cookbook that contains a LWRP provider with use_inline_resources and uses def action_create When I check the cookbook Then the LWRP provider without use_inline_resources and bad action_create warning 060 should be displayed against the provider file on line 3 Scenario: LWRP provider without use_inline_resources Given a cookbook that contains a LWRP provider without use_inline_resources When I check the cookbook Then the LWRP provider without use_inline_resources and bad action_create warning 060 should not be displayed against the provider file Scenario: LWRP provider without use_inline_resources and (okay) action_create Given a cookbook that contains a LWRP provider without use_inline_resources and uses def action_create When I check the cookbook Then the LWRP provider without use_inline_resources and bad action_create warning 060 should not be displayed against the provider file Scenario: LWRP provider with use_inline_resources Given a cookbook that contains a LWRP provider with use_inline_resources When I check the cookbook Then the LWRP provider without use_inline_resources and bad action_create warning 060 should not be displayed against the provider file foodcritic-8.1.0/features/019_check_for_consistent_node_access.feature0000644000004100000410000001340613005226016026202 0ustar www-datawww-dataFeature: Check for consistency in node access In order to be consistent in the way I access node attributes As a developer I want to identify if the same cookbook uses varying approaches to accessing node attributes Scenario Outline: Retrieve node attributes Given a cookbook with a single recipe that node attributes via When I check the cookbook Then the attribute consistency warning 019 should be Examples: | accesses | read_access_type | nested | show_warning | | ignores | none | | not shown | | reads | symbols | | not shown | | reads | strings | | not shown | | reads | vivified | | not shown | | reads | strings,symbols | | shown | | reads | strings,vivified | | shown | | reads | symbols,strings | nested | shown | | reads | symbols,vivified | | shown | | reads | vivified,strings | | shown | | reads | vivified,symbols | | shown | | updates | symbols | | not shown | | updates | strings | nested | not shown | | updates | vivified | | not shown | | updates | strings,symbols | | shown | | updates | strings,vivified | nested | shown | | updates | symbols,strings | | shown | | updates | symbols,vivified | | shown | | updates | vivified,strings | | shown | | updates | vivified,symbols | | shown | Scenario: Quoted symbols Given a cookbook with a single recipe that reads node attributes via symbols and quoted_symbols When I check the cookbook Then the attribute consistency warning 019 should be not shown Scenario: Multiple file matches Given a cookbook with five recipes And three of the recipes read node attributes via strings And two of the recipes read node attributes via symbols When I check the cookbook Then the attribute consistency warning 019 should be shown for both of the recipes that use symbols Scenario Outline: Ignore node built-in methods Given a cookbook with a single recipe that node attributes via and calls node. When I check the cookbook Then the attribute consistency warning 019 should be Examples: | accesses | read_access_type | method | show_warning | | reads | strings | platform? | not shown | | reads | symbols | run_list | not shown | | reads | symbols | run_state | not shown | | reads | strings | run_state | not shown | | reads | strings | set | not shown | | reads | strings,symbols | set | shown | Scenario Outline: Ignore method calls on node values Given a cookbook with a single recipe that node attributes via with When I check the cookbook Then the attribute consistency warning 019 should be Examples: | accesses | read_access_type | expression | show_warning | | reads | symbols | node.platform_version | shown | | reads | symbols | node.run_list | not shown | | reads | symbols | node[:foo].chomp | not shown | | reads | symbols | node[:foo][:bar].split(' ').first | not shown | | reads | symbols | node[:foo].bar | not shown | | reads | symbols | foo = node[:foo].bar | not shown | | reads | symbols | node[:foo].each{\|f\| puts f} | not shown | | updates | symbols | node[:foo].strip | not shown | | updates | strings | node[:foo].strip | shown | | updates | strings | foo = node[:foo].strip | shown | | updates | symbols | node['foo'].strip | shown | Scenario: Ignore method calls on patched node values Given a cookbook with a single recipe that calls a patched node method When I check the cookbook Then the attribute consistency warning 019 should be not shown Scenario: Ignore explicit method calls (zero-arg) Given a cookbook with a single recipe that explicitly calls a node method When I check the cookbook Then the attribute consistency warning 019 should be not shown Scenario: Ignore explicit method calls (multiple arguments) Given a cookbook with a single recipe that explicitly calls a node method with multiple arguments When I check the cookbook Then the attribute consistency warning 019 should be not shown Scenario: User hashes Given a cookbook with a single recipe that uses a hash value to access a node attribute When I check the cookbook Then the attribute consistency warning 019 should be not shown Scenario: Interpolated access Given a cookbook with a single recipe that mixes node access types in an interpolated value When I check the cookbook Then the attribute consistency warning 019 should be shown Scenario: Two cookbooks with differing approaches Given a cookbook with a single recipe that reads node attributes via strings only And another cookbook with a single recipe that reads node attributes via symbols only When I check the cookbook tree Then the attribute consistency warning 019 should not be displayed foodcritic-8.1.0/features/044_check_for_bare_attribute_keys.feature0000644000004100000410000000445313005226016025512 0ustar www-datawww-dataFeature: Check for bare attribute keys In order to ensure my cookbook attributes are easily understood As a developer I want to avoid referring to bare attributes Scenario Outline: Cookbook attributes Given a cookbook attributes file that refers to an attribute with When I check the cookbook Then the bare attribute keys warning 044 be displayed against the attributes file Examples: | reference | show_warning | | node['hostname'] | should not | | node[:hostname] | should not | | node.hostname | should not | | hostname | should | | true | should not | | false | should not | | nil | should not | Scenario: Cookbook recipe Given a cookbook recipe that refers to an attribute with a bare keyword When I check the cookbook Then the bare attribute keys warning 044 should not be displayed Scenario: Variable declared in attributes file Given a cookbook attributes file that declares and refers to a local variable When I check the cookbook Then the bare attribute keys warning 044 should not be displayed against the local variable Scenario Outline: Block variable Given a cookbook attributes file with a block that takes arguments When I check the cookbook Then the bare attribute keys warning 044 should not be displayed against the block Examples: | block_type | | do | | brace | Scenario: Attribute set to library method call Given a cookbook attributes file that sets an attribute to be the result of a library call When I check the cookbook Then the bare attribute keys warning 044 should not be displayed against the library call Scenario: Attribute chain with new line Given a cookbook attributes file that sets an attribute to have line break When I check the cookbook Then the bare attribute keys warning 044 should not be displayed against the local variable Scenario: Attribute chain with new line and parameterized name Given a cookbook attributes file that sets an attribute to have line break and arguments When I check the cookbook Then the bare attribute keys warning 044 should not be displayed against the new line foodcritic-8.1.0/features/individual_file.feature0000644000004100000410000000314413005226016022214 0ustar www-datawww-dataFeature: Individual file In order to get even faster feedback on changes to cookbooks As a developer I want to lint individual files in a cookbook Scenario: Linting an individual recipe shows warnings only from that file Given a cookbook with a single recipe that reads node attributes via symbols,strings And a cookbook that declares normal attributes via symbols When I check the recipe Then the attribute consistency warning 019 should be displayed for the recipe And the attribute consistency warning 019 should not be displayed for the attributes Scenario: Linting an individual role Given a roles directory And it contains a role file webserver.rb that defines the role name "apache" And it contains a role file database.rb that defines the role name "postgresql" When I check the webserver role only Then the role name does not match file name warning 049 should be shown against the webserver role And the role name does not match file name warning 049 should not be shown against the database role Scenario: Linting an individual environment Given an environments directory And it contains an environment file production_eu.rb that defines the environment name "production (eu-west-1)" And it contains an environment file production_us.rb that defines the environment name "production (us-east-1)" When I check the eu environment file only Then the invalid environment name warning 050 should be shown against the eu environment And the invalid environment name warning 050 should not be shown against the us environment foodcritic-8.1.0/features/053_check_for_metadata_using_recommends_keyword.feature0000644000004100000410000000134213005226016030422 0ustar www-datawww-dataFeature: Check for metadata using recommends keyword In order to ensure that recipe metadata is stable As a developer I want to identify metadata that is using unimplemented features whose definitions may change in the future Scenario: Metadata with the recommends keyword Given a cookbook with metadata that includes a recommends keyword When I check the cookbook Then the metadata using recommends warning 053 should be shown against the metadata file Scenario: Metadata without the recommends keyword Given a cookbook with metadata that does not include a recommends keyword When I check the cookbook Then the metadata using recommends warning 053 should be not shown against the metadata file foodcritic-8.1.0/features/062_cookbook_should_have_cookbook_version.feature0000644000004100000410000000545713005226016027307 0ustar www-datawww-dataFeature: Cookbook version should be defined In order to ensure that recipe metadata is stable As a developer I want to identify metadata that does not define any version for a cookbook Scenario: Metadata with the version keyword and a valid version Given a cookbook with metadata that includes the version keyword and a valid version string When I check the cookbook Then the metadata without version warning 062 should not be displayed against the metadata file Scenario: Metadata with the version keyword and a valid version with double quotes Given a cookbook with metadata that includes the version keyword and a valid version string with double quotes When I check the cookbook Then the metadata without version warning 062 should not be displayed against the metadata file Scenario: Metadata with the version keyword and a valid x.y version Given a cookbook with metadata that includes the version keyword and a valid x.y version string When I check the cookbook Then the metadata without version warning 062 should not be displayed against the metadata file Scenario: Metadata without the version keyword Given a cookbook with metadata that does not include a version keyword When I check the cookbook Then the metadata without version warning 062 should be displayed against the metadata file Scenario: Metadata with the version keyword and an invalid version Given a cookbook with metadata that includes the version keyword and an invalid version string When I check the cookbook Then the metadata without version warning 062 should not be displayed against the metadata file Scenario: Metadata with the version keyword and an invalid single digit version Given a cookbook with metadata that includes the version keyword and an invalid single digit version string When I check the cookbook Then the metadata without version warning 062 should not be displayed against the metadata file Scenario: Metadata with the version keyword and an invalid 4 digit version Given a cookbook with metadata that includes the version keyword and an invalid 4 digit version string When I check the cookbook Then the metadata without version warning 062 should not be displayed against the metadata file Scenario: Metadata version that uses string interpolation' do Given a cookbook with a metadata version that uses string interpolation When I check the cookbook Then the metadata without version warning 062 should not be displayed against the metadata file Scenario: Metadata version that is not a string literal' do Given a cookbook with a metadata version that is not a string literal When I check the cookbook Then the metadata without version warning 062 should not be displayed against the metadata file foodcritic-8.1.0/features/022_check_for_dodgy_conditions_within_loop.feature0000644000004100000410000000461713005226016027433 0ustar www-datawww-dataFeature: Check for dodgy resource conditions within a loop In order to ensure that resources are declared as intended As a developer I want to identify resource conditions within a loop that will not be re-evaluated Scenario: Resource outside a loop Given a cookbook recipe that declares a resource called "feed_pet" with the condition outside a loop When I check the cookbook Then the dodgy resource condition warning 022 should not be displayed Scenario Outline: Resource within a loop Given a cookbook recipe that declares a resource called with the condition in a loop When I check the cookbook Then the dodgy resource condition warning 022 be displayed Examples: | name | condition | show_warning | | "feed_pet" | | should not | | "feed_pet" | not_if { ::File.exists?("/tmp/fixed-path")} | should not | | "feed_pet" | not_if { ::File.exists?("/tmp/#{pet_name}")} | should | | "feed_pet" | only_if { ::File.exists?("/tmp/#{pet_name}")} | should | | "feed_pet" | only_if { ::File.exists?(pet_name)} | should | | "feed_pet_#{pet_name}" | not_if { ::File.exists?("/tmp/#{pet_name}")} | should not | | "feed_pet" | not_if { ::File.exists?("/tmp/#{unrelated_var}")} | should not | | "feed_pet" | only_if "[ -f \"/tmp/#{pet_name}\" ]" | should | | "feed_pet_#{pet_name}" | not_if "[ -f \"/tmp/#{pet_name}\" ]" | should not | | pet_name | not_if "[ -f \"/tmp/#{pet_name}\" ]" | should not | Scenario: Resource within a multi-arg block Given a resource declared with a guard within a loop with multiple block arguments When I check the cookbook Then the dodgy resource condition warning 022 should not be shown Scenario: Resource guard contains a block Given a resource that declares a guard containing a block When I check the cookbook Then the dodgy resource condition warning 022 should not be shown Scenario: Loop in a definition Given a resource declared within a definition When I check the cookbook Then the dodgy resource condition warning 022 should not be shown foodcritic-8.1.0/features/build_framework_support.feature0000644000004100000410000001252213005226016024035 0ustar www-datawww-data@build Feature: Build framework support In order to make it as easy as possible to lint my cookbook As a developer I want to be able to invoke the lint tool from my build Scenario: List rake tasks Given a cookbook that has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with no block When I list the available build tasks Then the lint task will be listed Scenario: List rake tasks - modified name Given a cookbook that has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task specifying a different name When I list the available build tasks Then the lint task will be listed under the different name Scenario Outline: Rakefile with no lint task Given a cookbook that has problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines no lint task When I run the build Then the build will with no warnings Examples: | problems | build_outcome | | no | succeed | | style | succeed | Scenario Outline: Lint task with no block Given a cookbook that has problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with no block When I run the build Then the build will with warnings Examples: | problems | build_outcome | warnings | | no | succeed | | | style | succeed | FC002 | | correctness | fail | FC006 | | style,correctness | fail | FC002,FC006 | Scenario Outline: Lint task with empty block Given a cookbook that has problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with an empty block When I run the build Then the build will with warnings Examples: | problems | build_outcome | warnings | | no | succeed | | | style | succeed | FC002 | | style,correctness | fail | FC002,FC006 | Scenario Outline: Specify rule tags to fail on Given a cookbook that has problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with a block setting options to When I run the build Then the build will with warnings Examples: | problems | options | build_outcome | warnings | | no | | succeed | | | style,correctness | {:fail_tags => []} | succeed | FC002,FC006 | | correctness | {:fail_tags => ['correctness']} | fail | FC006 | | style | {:fail_tags => ['correctness,style']} | fail | FC002 | | style,correctness | {:fail_tags => [], :tags => ['correctness']} | succeed | FC006 | @context Scenario: Specify that contexts should be shown Given a cookbook with a single recipe that reads node attributes via symbols,strings And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with a block setting options to {:context => true} When I run the build Then the recipe filename should be displayed And the attribute consistency warning 019 should be displayed below And the line number and line of code that triggered the warning should be displayed Scenario Outline: Specify paths to lint Given a cookbook that has problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task specifying files to lint as When I run the build Then the build will with warnings Examples: | problems | files | build_outcome | warnings | | no | ['recipes/default.rb'] | succeed | | | correctness | ['recipes/default.rb'] | fail | FC006 | | no | ['recipes/default.rb', 'recipes/server.rb'] | succeed | | | correctness | ['recipes/default.rb', 'recipes/server.rb'] | fail | FC006 | Scenario: Exclude tests Given a cookbook that has style problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with no block And unit tests under a top-level test directory When I run the build Then no warnings will be displayed against the tests And the build will succeed with warnings FC002 Scenario: Exclude vendored gems Given a cookbook that has style problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with no block And the gems have been vendored When I run the build Then no warnings will be displayed against the tests And the build will succeed with warnings FC002 foodcritic-8.1.0/features/056_check_for_no_maintainer_email.feature0000644000004100000410000000230213005226016025447 0ustar www-datawww-dataFeature: Check for no maintainer email In order to be able to upload my cookbook As a developer I want to be notified when my cookbook metadata does not specify the maintainer email Scenario: Metadata without a maintainer email Given a cookbook with metadata that does not include a maintainer email When I check the cookbook Then the metadata missing maintainer email warning 056 should be shown against the metadata file Scenario: Metadata with a maintainer email Given a cookbook with metadata that includes a maintainer email When I check the cookbook Then the metadata missing maintainer email warning 056 should be not shown against the metadata file Scenario: Metadata with a maintainer email that is an expression Given a cookbook with metadata that includes a maintainer email expression When I check the cookbook Then the metadata missing maintainer email warning 056 should be not shown against the metadata file Scenario: Cookbook without metadata file Given a cookbook that does not have defined metadata When I check the cookbook Then the metadata missing maintainer email warning 056 should be not shown against the metadata file foodcritic-8.1.0/features/sort_warnings.feature0000644000004100000410000000072013005226016021761 0ustar www-datawww-dataFeature: Sort warnings In order to make it easier to see which lines of my recipe have been flagged with warnings As a developer I want warnings to appear in line order Scenario: Recipe has warnings on lines that don't sort non-numerically Given a cookbook with a single recipe which accesses node attributes with symbols on lines 2 and 10 When I check the cookbook Then the node access warning 001 should warn on lines 2 and 10 in that orderfoodcritic-8.1.0/features/exclude_paths_to_lint.feature0000644000004100000410000000153013005226016023442 0ustar www-datawww-dataFeature: Exclude paths from being linted In order to avoid linting some paths that are not really from the cookbook As a developer I want to be able to exclude some files or directories from the passed paths Scenario: Don't exclude a non cookbook directory Given a cookbook that has style problems And unit tests under a top-level test directory When I check the cookbook without excluding the test directory Then warnings will be displayed against the tests And the style warning 002 should be displayed Scenario: Exclude a non cookbook directory Given a cookbook that has style problems And unit tests under a top-level test directory When I check the cookbook excluding the test directory Then no warnings will be displayed against the tests And the style warning 002 should be displayed foodcritic-8.1.0/features/064_check_for_no_issues_url.feature0000644000004100000410000000223413005226016024351 0ustar www-datawww-dataFeature: Check for no issues_url In order to be able to share my cookbook on the Supermarket As a developer I want to be notified when my cookbook metadata does not specify the issues_url Scenario: Metadata without a issues_url Given a cookbook with metadata that does not include a issues_url keyword When I check the cookbook Then the metadata missing issues_url warning 064 should be shown against the metadata file Scenario: Metadata with a issues_url Given a cookbook with metadata that includes a issues_url keyword When I check the cookbook Then the metadata missing issues_url warning 064 should be not shown against the metadata file Scenario: Metadata with a issues_url that is an expression Given a cookbook with metadata that includes a issues_url expression When I check the cookbook Then the metadata missing issues_url warning 064 should be not shown against the metadata file Scenario: Cookbook without metadata file Given a cookbook that does not have defined metadata When I check the cookbook Then the metadata missing issues_url warning 064 should be not shown against the metadata file foodcritic-8.1.0/features/010_check_search_syntax.feature0000644000004100000410000000153213005226016023454 0ustar www-datawww-dataFeature: Check for invalid search syntax In order to identify invalid search syntax that will cause my converge to fail As a developer I want to verify that search expressions use valid Lucene syntax Scenario: Invalid search syntax Given a cookbook recipe that attempts to perform a search with invalid syntax When I check the cookbook Then the invalid search syntax warning 010 should be displayed Scenario: Valid search syntax Given a cookbook recipe that attempts to perform a search with valid syntax When I check the cookbook Then the invalid search syntax warning 010 should not be displayed Scenario: Search with subexpression Given a cookbook recipe that attempts to perform a search with a subexpression When I check the cookbook Then the invalid search syntax warning 010 should not be displayed foodcritic-8.1.0/features/include_custom_rules.feature0000644000004100000410000000262513005226016023317 0ustar www-datawww-dataFeature: Include custom rules In order to be able detect cookbook issues that are specific to my organisation As a developer I want to be able to write custom rules and include them in my check Scenario: Valid custom rule Given a cookbook with a single recipe that reads node attributes via strings And I have installed the lint tool When I run it on the command line including a custom rule file containing a rule that matches Then a warning for the custom rule should be displayed Scenario: Valid custom rules (directory) Given a cookbook with a single recipe that reads node attributes via strings And I have installed the lint tool When I run it on the command line including a custom rule directory containing a rule that matches Then a warning for the custom rule should be displayed Scenario: Missing file Given a cookbook with a single recipe that reads node attributes via strings And I have installed the lint tool When I run it on the command line including a missing custom rule file Then a 'No such file or directory' error should be displayed Scenario: Non-ruby file Given a cookbook with a single recipe that reads node attributes via strings And I have installed the lint tool When I run it on the command line including a file which does not contain Ruby code Then an 'undefined method' error should be displayed foodcritic-8.1.0/features/limit_rules_to_specific_versions.feature0000644000004100000410000000607213005226016025717 0ustar www-datawww-dataFeature: Limit rules to specific versions In order to not be shown warnings that do not apply to my version of Chef As a developer I want to be able to specify the version of Chef I am using Scenario: Rule with no version constraint - no version specified Given a rule that does not declare a version constraint And a cookbook that matches that rule When I check the cookbook without specifying a Chef version Then the warning should be displayed Scenario Outline: Rule with no version constraint - specifying version Given a rule that does not declare a version constraint And a cookbook that matches that rule When I check the cookbook specifying as the Chef version Then the warning should be displayed Examples: | version | | 0.10.10.beta.1 | | 0.10.8 | | 0.10.6 | | 0.10.6.rc.5 | | 0.10.6.beta.3 | | 0.10.4 | | 0.10.2 | | 0.10.0 | | 0.9.18 | Scenario: Rule with version constraint - no version specified Given a rule that declares a version constraint And the current stable version of Chef falls within it And a cookbook that matches that rule When I check the cookbook without specifying a Chef version Then the warning should be displayed Scenario: Rule with version constraint - no version specified Given a rule that declares a version constraint And the current stable version of Chef does not fall within it And a cookbook that matches that rule When I check the cookbook without specifying a Chef version Then the warning should not be displayed Scenario Outline: Rule with version constraint - specifying version Given a rule that declares a version constraint of to And a cookbook that matches that rule When I check the cookbook specifying as the Chef version Then the warning Examples: | version | from_version | to_version | warning | | 0.10.10.beta.1 | 0.10.10 | | should not be displayed | | 0.10.10 | 0.10.10 | | should be displayed | | 0.10.8 | 0.10.10 | | should not be displayed | | 0.10.6.rc.5 | 0.10.8 | | should not be displayed | | 0.10.6.rc.5 | 0.10.6 | | should not be displayed | | 0.10.4 | 0.9.14 | | should be displayed | | 0.10.4 | 0.10.10 | | should not be displayed | | 0.10.8 | 0.9.18 | 0.10.6 | should not be displayed | | 0.10.6 | 0.9.18 | 0.10.6 | should be displayed | | 0.9.18 | 0.9.18 | 0.10.6 | should be displayed | | 0.9.14 | 0.9.18 | 0.10.6 | should not be displayed | | 0.9.14 | | 0.10.6 | should be displayed | | 0.9.14 | | 0.9.12 | should not be displayed | foodcritic-8.1.0/features/037_check_for_invalid_notification_action.feature0000644000004100000410000000267013005226016027215 0ustar www-datawww-dataFeature: Check for invalid notification actions In order to flag invalid notifications more quickly As a developer I want to identify notifications that have an action which is invalid for the notified resource Scenario Outline: Notification actions Given a cookbook recipe with a resource that notifies a to When I check the cookbook Then the invalid notification action warning 037 be displayed Examples: | resource | action | display | | service | restart | should not | | service | nothing | should not | | service | create | should | | execute | run | should not | | execute | execute | should | Scenario Outline: Subscription actions Given a cookbook recipe with a resource that subscribes to when notified by a remote_file When I check the cookbook Then the invalid notification action warning 037 be displayed Examples: | source | action | display | | service | restart | should not | | service | nothing | should not | | service | create | should | | execute | run | should not | | execute | execute | should | Scenario: Notification action is an expression Given a cookbook recipe with a resource that notifies where the action is an expression When I check the cookbook Then the invalid notification action warning 037 should not be displayed foodcritic-8.1.0/features/059_check_for_lwrp_provider_without_use_inline_resources.feature0000644000004100000410000000137713005226016032460 0ustar www-datawww-dataFeature: Check for LWRP providers that do not declare use_inline_resources In order to ensure that notifications happen correctly As a cookbook provider author I want to always use_inline_resources Scenario: LWRP provider with use_inline_resources Given a cookbook that contains a LWRP provider with use_inline_resources When I check the cookbook Then the LWRP provider without use_inline_resources warning 059 should not be displayed against the provider file Scenario: LWRP provider without use_inline_resources Given a cookbook that contains a LWRP provider without use_inline_resources When I check the cookbook Then the LWRP provider without use_inline_resources warning 059 should be displayed against the provider file foodcritic-8.1.0/features/choose_rules_to_apply.feature0000644000004100000410000000565713005226016023501 0ustar www-datawww-dataFeature: Choose rules to apply In order to remove warnings that are not appropriate for my usage of Chef As a developer I want to be able to filter the rules applied based on tags associated with each rule Scenario Outline: Specified tags on command line Given a cookbook that matches rules When I check the cookbook specifying tags Then the warnings shown should be Examples: | cookbook_matches | tag_arguments | warnings_shown | | FC002,FC003,FC004 | | FC002,FC003,FC004 | | FC002 | -t FC002 | FC002 | | FC002,FC003,FC004 | --tags FC002 | FC002 | | FC002,FC003,FC004 | --tags fc002 | | | FC002,FC003,FC004 | --tags FC005 | | | FC002,FC003,FC004 | --tags ~FC002 | FC003,FC004 | | | --tags FC002 | | | FC002,FC003,FC004 | --tags @FC002 | | | FC002,FC003,FC004 | --tags style | FC002,FC004 | | FC002,FC003,FC004 | --tags FC002 --tags FC003 | | | FC002,FC003,FC004 | --tags style --tags services | FC004 | | FC002,FC003,FC004 | --tags style,services | FC002,FC004 | Scenario Outline: Specified tags in cookbook .foodcritic file Given a cookbook that matches rules When the cookbook directory has a .foodcritic file specifying tags And I check the cookbook specifying tags Then the warnings shown should be Examples: | cookbook_matches | tag_file | tag_arguments | warnings_shown | | FC002,FC003,FC004 | | | FC002,FC003,FC004 | | FC002 | FC002 | | FC002 | | FC002 | ~FC002 | --tags FC002 | FC002 | | FC002 | fc002 | | | | FC002,FC003,FC004 | FC005 | | | | FC002,FC003,FC004 | FC005 | -t FC002 | FC002 | | FC002,FC003,FC004 | FC002 | -t FC003 | FC003 | | FC002,FC003,FC004 | ~FC002 | | FC003,FC004 | | FC002,FC003,FC004 | ~FC002 | -t FC002,FC003 | FC002,FC003 | | | FC002 | | | | FC002,FC003,FC004 | @FC002 | | | | FC002,FC003,FC004 | style | | FC002,FC004 | | FC002,FC003,FC004 | FC002 FC003 | | | | FC002,FC003,FC004 | style,services | | FC002,FC004 | foodcritic-8.1.0/features/057_check_for_library_provider_without_use_inline_resources.feature0000644000004100000410000000205013005226016033123 0ustar www-datawww-dataFeature: Check for library providers that do not declare use_inline_resources In order to ensure that notifications happen correctly As a cookbook provider author I want to always use_inline_resources Scenario: Library provider with use_inline_resources Given a cookbook that contains a library provider with use_inline_resources When I check the cookbook Then the library provider without use_inline_resources warning 057 should not be displayed against the libraries file Scenario: Library provider without use_inline_resources Given a cookbook that contains a library provider without use_inline_resources When I check the cookbook Then the library provider without use_inline_resources warning 057 should be displayed against the libraries file on line 11 Scenario: Library file without use_inline_resources Given a cookbook that contains a library resource When I check the cookbook Then the library provider without use_inline_resources warning 057 should not be displayed against the libraries file foodcritic-8.1.0/features/multiple_paths.feature0000644000004100000410000000377313005226016022127 0ustar www-datawww-dataFeature: Multiple paths In order to avoid needing to run foodcritic multiple times As a developer I want to lint multiple paths at once Scenario Outline: Linting multiple individual cookbooks Given a cookbook with a single recipe that reads node attributes via symbols,strings And another cookbook with a single recipe that reads node attributes via strings When I check both cookbooks with the command-line Then the attribute consistency warning 019 should be shown Examples: | command_line | | example another_example | | -B example -B another_example | | --cookbook-path example --cookbook-path another_example | | -B example another_example | | --cookbook-path example another_example | | -B example --cookbook-path another_example | Scenario: Linting multiple role directories Given two roles directories And each role directory has a role with a name that does not match the containing file name When I check both roles directories Then the role name does not match file name warning 049 should be shown against the files in both directories Scenario: Linting a cookbook, role and environment together Given a cookbook with a single recipe that reads node attributes via symbols,strings And another cookbook with a single recipe that reads node attributes via strings And a directory that contains a role file webserver.rb in ruby that defines role name apache And a directory that contains an environment file production.rb in ruby that defines environment name production (us-east) When I check the cookbooks, role and environment together Then the attribute consistency warning 019 should be shown And the role name does not match file name warning 049 should be shown And the invalid environment name warning 050 should be shown foodcritic-8.1.0/features/show_lines_matched.feature0000644000004100000410000000200413005226016022716 0ustar www-datawww-data@context Feature: Show Lines Matched In order to understand more quickly the reason for a warning As a developer I want to be able to see the lines the warning matches against, with context Scenario: Recipe with a single warning Given a cookbook with a single recipe that reads node attributes via symbols When I check the cookbook, specifying that context should be shown Then the recipe filename should be displayed And the node access warning 001 should be displayed below And the line number and line of code that triggered the warning should be displayed Scenario: Recipe with a multiple warnings of the same type Given a cookbook with a single recipe that accesses multiple node attributes via symbols When I check the cookbook, specifying that context should be shown Then the recipe filename should be displayed And the node access warning 001 should be displayed below And the line number and line of code that triggered the warnings should be displayed foodcritic-8.1.0/features/050_check_for_invalid_name.feature0000644000004100000410000000242013005226016024076 0ustar www-datawww-dataFeature: Check for invalid names In order to identify issues more quickly As a developer I want to identify roles or environments whose names are invalid Scenario Outline: Role name validity Given a ruby role file that defines a role with name When I check the role directory Then the invalid role name warning 050 be shown Examples: | role_name | show_warning | | webserver | should not | | web_server | should not | | web-server | should not | | webserver123 | should not | | Webserver | should not | | web server | should | | webserver% | should | Scenario Outline: Environment name validity Given a ruby environment file that defines an environment with name When I check the environment directory Then the invalid environment name warning 050 be shown Examples: | environment_name | show_warning | | production | should not | | pre_production | should not | | production-eu | should not | | production2 | should not | | Production | should not | | EU West | should | | production (eu-west) | should | foodcritic-8.1.0/features/017_check_for_no_lwrp_notifications.feature0000644000004100000410000000461313005226016026072 0ustar www-datawww-dataFeature: Check for no LWRP notifications In order to ensure resource actions are triggered as expected As a developer I want to identify when a LWRP does not trigger notifications Scenario: LWRP with no notifications Given a cookbook that contains a LWRP that does not trigger notifications When I check the cookbook Then the LWRP does not notify when updated warning 017 should be displayed against the provider file Scenario: LWRP with a notification Given a cookbook that contains a LWRP with a single notification When I check the cookbook Then the LWRP does not notify when updated warning 017 should not be displayed against the provider file Scenario: LWRP with a notification without parentheses Given a cookbook that contains a LWRP with a single notification without parentheses When I check the cookbook Then the LWRP does not notify when updated warning 017 should not be displayed against the provider file Scenario: LWRP with multiple notifications Given a cookbook that contains a LWRP with multiple notifications When I check the cookbook Then the LWRP does not notify when updated warning 017 should not be displayed against the provider file Scenario Outline: LWRP using converge_by Given a cookbook that contains a LWRP that uses converge_by - block parentheses When I check the cookbook Then the LWRP does not notify when updated warning 017 should not be displayed against the provider file Examples: | block_type | with_parens | | brace | with | | do | with | | do | without | Scenario: LWRP using use_inline_resources Given a cookbook that contains a LWRP that uses use_inline_resources When I check the cookbook Then the LWRP does not notify when updated warning 017 should not be displayed against the provider file Scenario Outline: Warnings raised for actions individually Given a LWRP with an action :create that notifies with and another :delete that does not notify When I check the cookbook Then the LWRP does not notify when updated warning 017 should not be shown against the :create action And the LWRP does not notify when updated warning 017 should be shown against the :delete action Examples: | notify_type | | converge_by | | updated_by_last_action | foodcritic-8.1.0/features/025_check_for_deprecated_gem_install.feature0000644000004100000410000000312413005226016026132 0ustar www-datawww-dataFeature: Check for deprecated gem install In order to be clear and concise in my Chef recipes As a developer I want to use chef_gem in preference to manual compile-time gem install Scenario: Normal gem install Given a cookbook recipe that installs a gem When I check the cookbook specifying 0.10.10 as the Chef version Then the prefer chef_gem to manual install warning 025 should not be displayed Scenario: Compile-time gem install Given a cookbook recipe that installs a gem at compile time using the deprecated syntax When I check the cookbook specifying 0.10.10 as the Chef version Then the prefer chef_gem to manual install warning 025 should be shown Scenario: Compile-time gem upgrade Given a cookbook recipe that upgrades a gem at compile time using the deprecated syntax When I check the cookbook specifying 0.10.10 as the Chef version Then the prefer chef_gem to manual install warning 025 should be shown Scenario: Compile-time gem install - multiple from array Given a cookbook recipe that installs multiple gems from an array at compile time using the deprecated syntax When I check the cookbook specifying 0.10.10 as the Chef version Then the prefer chef_gem to manual install warning 025 should be shown Scenario: Compile-time gem install - multiple from wordlist Given a cookbook recipe that installs multiple gems from a word list at compile time using the deprecated syntax When I check the cookbook specifying 0.10.10 as the Chef version Then the prefer chef_gem to manual install warning 025 should be shown foodcritic-8.1.0/features/001_check_node_access.feature0000644000004100000410000000572113005226016023053 0ustar www-datawww-dataFeature: Check Node Access In order to be consistent in the way I access node attributes and to avoid confusing people new to Ruby As a developer I want to identify if the cookbooks access node attributes with symbols rather than strings Scenario: Cookbook recipe accesses attributes via symbols Given a cookbook with a single recipe that reads node attributes via symbols When I check the cookbook Then the node access warning 001 should be displayed Scenario: Cookbook recipe accesses multiple attributes via symbols Given a cookbook with a single recipe that accesses multiple node attributes via symbols When I check the cookbook Then the node access warning 001 should be displayed for each match Scenario: Assignment of node attributes accessed via symbols Given a cookbook with a single recipe that assigns node attributes accessed via symbols to a local variable When I check the cookbook Then the node access warning 001 should be displayed Scenario: Cookbook recipe accesses nested attributes via symbols Given a cookbook with a single recipe that accesses nested node attributes via symbols When I check the cookbook Then the node access warning 001 should be displayed twice for the same line Scenario: Cookbook recipe accesses attributes via strings Given a cookbook with a single recipe that reads node attributes via strings When I check the cookbook Then the node access warning 001 should not be displayed Scenario: Cookbook recipe access attributes via strings and searches Given a cookbook with a single recipe that searches based on a node attribute accessed via strings When I check the cookbook Then the node access warning 001 should not be displayed Scenario: Cookbook recipe access attributes via symbols for template Given a cookbook with a single recipe that passes node attributes accessed via symbols to a template When I check the cookbook Then the node access warning 001 should be displayed against the variables Scenario: Cookbook recipe sets default attributes via symbols Given a cookbook that declares default attributes via symbols When I check the cookbook Then the node access warning 001 should be displayed against the attributes file Scenario: Cookbook recipe overrides attributes via symbols Given a cookbook that declares override attributes via symbols When I check the cookbook Then the node access warning 001 should be displayed against the attributes file Scenario: Cookbook recipe sets attributes via symbols Given a cookbook that declares set attributes via symbols When I check the cookbook Then the node access warning 001 should be displayed against the attributes file Scenario: Cookbook recipe sets normal attributes via symbols Given a cookbook that declares normal attributes via symbols When I check the cookbook Then the node access warning 001 should be displayed against the attributes file foodcritic-8.1.0/features/009_check_for_unrecognised_resource_attributes.feature0000644000004100000410000000603113005226016030320 0ustar www-datawww-dataFeature: Check for unrecognised resource attributes In order to identify typos in recipes without the need for a converge As a developer I want to identify use of standard resources with unrecognised attributes Scenario Outline: Unrecognised attribute declared on built-in resource Given a recipe that declares a resource with these attributes: When I check the cookbook Then the unrecognised attribute warning 009 should be Examples: | type | attributes | shown | | file | punter,group,mode,action | true | | file | owner,group,rights,action | false | | file | owner,group,mode,action | false | | file | action,retries | false | | group | gid | false | | group | gid,membranes | true | | package | version,action,options | false | | package | verison,action,options | true | Scenario: Resource declared using recognised attributes Given a recipe that declares a resource with standard attributes When I check the cookbook Then the unrecognised attribute warning 009 should not be displayed Scenario: LWRP Resource Given a recipe that declares a user-defined resource When I check the cookbook Then the unrecognised attribute warning 009 should not be displayed And no error should have occurred Scenario: Resource declared with only a name attribute Given a recipe that declares a resource with only a name attribute When I check the cookbook Then the unrecognised attribute warning 009 should not be displayed Scenario: Unrecognised attribute on recipe with multiple resources of the same type Given a recipe that declares multiple resources of the same type of which one has a bad attribute When I check the cookbook Then the unrecognised attribute warning 009 should be displayed against the correct resource Scenario: Resource with conditional attributes Given a recipe that declares a resource with recognised attributes and a conditional execution ruby block When I check the cookbook Then the unrecognised attribute warning 009 should not be displayed Scenario: Resource with nested block Given a recipe that declares a resource with recognised attributes and a nested block When I check the cookbook Then the unrecognised attribute warning 009 should not be displayed Scenario: Resource with attribute method call Given a recipe that declares a resource with an attribute value set to the result of a method call When I check the cookbook Then the unrecognised attribute warning 009 should not be displayed Scenario Outline: Create raid array with mdadm specifying layout Given a recipe that creates a raid array with mdadm specifying layout When I check the cookbook specifying as the Chef version Then the unrecognised attribute warning 009 should be Examples: | version | shown | | 12.5.1 | true | | 12.11.18 | false | foodcritic-8.1.0/features/065_check_for_no_source_url.feature0000644000004100000410000000223413005226016024337 0ustar www-datawww-dataFeature: Check for no source_url In order to be able to share my cookbook on the Supermarket As a developer I want to be notified when my cookbook metadata does not specify the source_url Scenario: Metadata without a source_url Given a cookbook with metadata that does not include a source_url keyword When I check the cookbook Then the metadata missing source_url warning 065 should be shown against the metadata file Scenario: Metadata with a source_url Given a cookbook with metadata that includes a source_url keyword When I check the cookbook Then the metadata missing source_url warning 065 should be not shown against the metadata file Scenario: Metadata with a source_url that is an expression Given a cookbook with metadata that includes a source_url expression When I check the cookbook Then the metadata missing source_url warning 065 should be not shown against the metadata file Scenario: Cookbook without metadata file Given a cookbook that does not have defined metadata When I check the cookbook Then the metadata missing source_url warning 065 should be not shown against the metadata file foodcritic-8.1.0/features/049_check_for_role_name_mismatch_with_file_name.feature0000644000004100000410000000325113005226016030343 0ustar www-datawww-dataFeature: Identify roles names that do not match filenames In order to avoid confusion As a developer I want to identify roles whose names differ from their filename Scenario Outline: Illustrates role paths Given a directory that contains a role file in that defines role name When I check the role directory as a path Then the role name does not match file name warning 049 be shown Examples: | filename | format | role_name | path_type | show_warning | | webserver.rb | ruby | webserver | role | should not | | webserver.rb | ruby | apache | role | should | | webserver.json | json | webserver | role | should not | | webserver.json | json | apache | role | should not | | webserver.rb | ruby | webserver | cookbook | should not | | webserver.rb | ruby | apache | cookbook | should not | | webserver.rb | ruby | webserver | default | should not | | webserver.rb | ruby | apache | default | should not | Scenario: Role name references variable Given a directory that contains a ruby role with an expression as its name When I check the role directory Then the role name does not match file name warning 049 should not be shown Scenario: Multiple role names declared Given a directory that contains a ruby role that declares the role name more than once And the last role name declared does not match the containing filename When I check the role directory Then the role name does not match file name warning 049 should be shown against the second name foodcritic-8.1.0/features/046_check_for_assign_unless_nil_attributes.feature0000644000004100000410000000207013005226016027443 0ustar www-datawww-dataFeature: Check for attributes using assign unless nil In order to avoid attributes being assigned unexpected values As a developer I want to identify attributes that attempt to use assign unless nil (||=) Scenario Outline: Attribute assignments Given a cookbook attributes file with assignment When I check the cookbook Then the attribute assignment uses assign unless nil warning 046 be displayed against the attributes file Examples: | assignment | show_warning | | default['somevalue'] = [] | should not | | default['somevalue'] = foo \|\| bar | should not | | default['somevalue'] \|\|= [] | should | | default[:somevalue] = [] | should not | | default[:somevalue] = foo \|\| bar | should not | | default[:somevalue] \|\|= [] | should | | default.somevalue = [] | should not | | default.somevalue = foo \|\| bar | should not | | default.somevalue \|\|= [] | should | foodcritic-8.1.0/features/030_check_for_debugger_breakpoints.feature0000644000004100000410000000210213005226016025630 0ustar www-datawww-dataFeature: Check for debugger breakpoints In order to avoid halting a converge As a developer I want to identify debugger breakpoints that have not been removed Scenario Outline: Debugger breakpoints Given a cookbook with a that a breakpoint When I check the cookbook Then the debugger breakpoint warning 030 should be against the Examples: | component | includes | show_warning | | library | does not include | not shown | | library | includes | shown | | metadata | does not include | not shown | | metadata | includes | shown | | provider | does not include | not shown | | provider | includes | shown | | recipe | does not include | not shown | | recipe | includes | shown | | resource | does not include | not shown | | resource | includes | shown | | template | does not include | not shown | | template | includes | shown | foodcritic-8.1.0/features/011_check_for_markdown_readme.feature0000644000004100000410000000160113005226016024604 0ustar www-datawww-dataFeature: Check for markdown readme In order to ensure that my cookbook README renders nicely on Supermarket As a developer I want to identify if my cookbook does not have a markdown formatted README Scenario: Cookbook missing markdown formatted README Given a cookbook that does not have a README at all When I check the cookbook Then the missing readme warning 011 should be displayed against the README.md file Scenario: Cookbook has markdown formatted README Given a cookbook that has a README in markdown format When I check the cookbook Then the missing readme warning 011 should not be displayed against the README.md file Scenario: Cookbook has an alternatively formatted README Given a cookbook that has a README in RDoc format When I check the cookbook Then the missing readme warning 011 should be displayed against the README.md file foodcritic-8.1.0/features/032_check_for_invalid_notification_timing.feature0000644000004100000410000000264213005226016027221 0ustar www-datawww-dataFeature: Check for invalid notification timings In order to flag invalid notifications more quickly As a developer I want to identify notifications that have an invalid timing type Scenario Outline: Notification timings Given a cookbook recipe with a resource that When I check the cookbook specifying as the Chef version Then the invalid notification timing warning 032 be displayed Examples: | type | notification_timing | version | display | | notifies | | 12.6.0 | should not | | notifies | before | 12.4.0 | should | | notifies | before | 12.6.0 | should not | | notifies | immediately | 12.6.0 | should not | | notifies | immediate | 12.6.0 | should not | | notifies | delayed | 12.6.0 | should not | | notifies | imediately | 12.6.0 | should | | subscribes | | 12.6.0 | should not | | subscribes | before | 12.4.0 | should | | subscribes | before | 12.6.0 | should not | | subscribes | immediately | 12.6.0 | should not | | subscribes | immediate | 12.6.0 | should not | | subscribes | delayed | 12.6.0 | should not | | subscribes | imediately | 12.6.0 | should | foodcritic-8.1.0/features/048_check_for_shellout.feature0000644000004100000410000000424313005226016023323 0ustar www-datawww-dataFeature: Check for spawning without Mixlib::ShellOut In order to work more easily with spawned processes As a developer I want to use the Mixlib::ShellOut library rather than basic ruby constructs Scenario Outline: Spawning a sub-process Given a cookbook recipe that spawns a sub-process with When I check the cookbook Then the prefer mixlib shellout warning 048 be displayed Examples: | command | show_warning | | `ls` | should | | `#{cmd}` | should | | %x{ls} | should | | %x[ls] | should | | %x{#{cmd} some_dir} | should | | %x{#{cmd} some_dir} | should | | system "ls" | should | | system("ls") | should | | system cmd | should | | system(cmd) | should | | system("#{cmd} some_dir") | should | | Mixlib::ShellOut.new('ls').run_command | should not | Scenario: Execute resource Given a cookbook recipe that executes 'ls' with an execute resource When I check the cookbook Then the prefer mixlib shellout warning 048 should not be displayed Scenario: Group resource Given a cookbook recipe that contains a group resource that uses the 'system' bool attribute When I check the cookbook Then the prefer mixlib shellout warning 048 should not be displayed against the group resource Scenario: User resource Given a cookbook recipe that contains a user resource that uses the 'system' string attribute When I check the cookbook Then the prefer mixlib shellout warning 048 should not be displayed against the user resource Scenario: Ruby block Given a provider that contains a ruby_block resource that spawns a sub-process with system When I check the cookbook Then the prefer mixlib shellout warning 048 should be displayed against the ruby_block resource foodcritic-8.1.0/features/033_check_for_missing_template.feature0000644000004100000410000000426013005226016025021 0ustar www-datawww-dataFeature: Check for missing template In order to ensure the Chef run is successful As a developer I want to identify template resources that refer to missing templates Scenario Outline: Template types Given a cookbook recipe that When I check the cookbook Then the missing template warning 033 Examples: | template_type | warning | | defines a template where both the name and source are complex expressions | should not be displayed | | defines a template where name and source are both simple expressions | should not be displayed | | defines a template where name is a complex expression | should not be displayed | | infers a template with an expression | should not be displayed | | refers to a hidden template | should not be displayed | | refers to a local template | should not be displayed | | refers to a missing template | should be displayed | | refers to a template in a subdirectory | should not be displayed | | refers to a template | should not be displayed | | refers to a template with an expression | should not be displayed | | refers to a template without an erb extension | should not be displayed | | uses a missing inferred template | should be displayed | | uses an inferred template | should not be displayed | | uses a template from another cookbook | should not be displayed | Scenario: Template within deploy resource Given a cookbook recipe with a deploy resource that contains a template resource When I check the cookbook Then the missing template warning 033 should not be displayed against the template foodcritic-8.1.0/features/014_check_for_long_ruby_blocks.feature0000644000004100000410000000214713005226016025013 0ustar www-datawww-dataFeature: Check for overly long ruby blocks In order to keep my cookbooks readable As a developer I want to identify if ruby blocks in my recipes are too long and should be extracted to libraries Scenario: No ruby blocks Given a cookbook that contains no ruby blocks When I check the cookbook Then the long ruby block warning 014 should not be displayed Scenario: Short ruby block Given a cookbook that contains a short ruby block When I check the cookbook Then the long ruby block warning 014 should not be displayed Scenario: Long ruby block Given a cookbook that contains a long ruby block When I check the cookbook Then the long ruby block warning 014 should be displayed Scenario: Multiple ruby blocks Given a recipe that contains both long and short ruby blocks When I check the cookbook Then the long ruby block warning 014 should be displayed against the long block only Scenario: Missing block attribute Given a recipe that contains a ruby block without a block attribute When I check the cookbook Then no error should have occurred foodcritic-8.1.0/features/004_check_service_resource_used.feature0000644000004100000410000000463513005226016025202 0ustar www-datawww-dataFeature: Check for service commands within execute resources In order to control services in an idiomatic way As a developer I want to identify if service commands are called by execute resources rather than using the service resource Scenario: Execute resource starting a service via init.d Given a cookbook recipe that uses execute to start a service via init.d When I check the cookbook Then the service resource warning 004 should be displayed Scenario Outline: Execute resource controlling a service via the service command Given a cookbook recipe that uses execute to a service via the service command When I check the cookbook Then the service resource warning 004 Examples: | action | warning | | start | should be displayed | | stop | should be displayed | | restart | should be displayed | | reload | should be displayed | | initdb | should not be displayed | Scenario: Execute resource starting a service via upstart Given a cookbook recipe that uses execute to start a service via upstart When I check the cookbook Then the service resource warning 004 should be displayed Scenario: Execute resource starting a service via invoke-rc.d Given a cookbook recipe that uses execute to start a service via invoke-rc.d When I check the cookbook Then the service resource warning 004 should be displayed Scenario: Execute resource starting a service via the full path to the service command Given a cookbook recipe that uses execute to start a service via the full path to the service command When I check the cookbook Then the service resource warning 004 should be displayed Scenario: Execute resource starting a service via init.d (multiple commands) Given a cookbook recipe that uses execute to sleep and then start a service via init.d When I check the cookbook Then the service resource warning 004 should be displayed Scenario: Execute resource not controlling a service Given a cookbook recipe that uses execute to list a directory When I check the cookbook Then the service resource warning 004 should not be displayed Scenario: Execute resource using name attribute Given a cookbook recipe that uses execute with a name attribute to start a service When I check the cookbook Then the service resource warning 004 should be displayed foodcritic-8.1.0/features/continuous_integration_support.feature0000644000004100000410000000410413005226016025467 0ustar www-datawww-dataFeature: Continuous Integration Support In order to be able to quickly identify problems with my cookbooks As a developer I want to be able to fail the build for a subset of warnings Scenario: Command help Given I have installed the lint tool When I run it on the command line with the help option Then the usage text should include an option for specifying tags that will fail the build Scenario Outline: Fail the build for certain tags Given a cookbook that matches rules When I check the cookbook specifying tags Then the warnings shown should be And the build status should be Examples: | cookbook_matches | tag_arguments | warnings_shown | build_status | | FC002,FC003,FC004 | | FC002,FC003,FC004 | successful | | FC002,FC003,FC004 | -t style | FC002,FC004 | successful | | FC002,FC003,FC004 | -f style | FC002,FC003,FC004 | failed | | FC002,FC003,FC004 | -f FC005 | FC002,FC003,FC004 | successful | | FC002,FC003,FC004 | -f FC003,FC004 | FC002,FC003,FC004 | failed | | FC002,FC003,FC004 | --epic-fail FC003 | FC002,FC003,FC004 | failed | | FC002,FC003 | -f any | FC002,FC003 | failed | | FC002,FC003 | -f any -f ~FC014 | FC002,FC003 | failed | | FC002,FC003 | -f any,~FC014 | FC002,FC003 | failed | | FC002 | -f ~FC002 | FC002 | successful | | FC002,FC003 | -f ~FC002 | FC002,FC003 | failed | | FC002,FC003 | -f any -f ~FC002 | FC002,FC003 | failed | | FC002 | -f any,~FC002 | FC002 | failed | | FC002 | -f any -f ~FC002 | FC002 | successful | | FC002,FC003 | -f any,~FC002 | FC002,FC003 | failed | | FC002,FC003 | -f ~FC002 -f ~FC004 | FC002,FC003 | failed | foodcritic-8.1.0/features/058_check_for_library_provider_bad_action_methods.feature0000644000004100000410000000314713005226016030733 0ustar www-datawww-dataFeature: Check for library providers that declare use_inline_resources and declare action_ methods In order to ensure that notifications happen correctly As a cookbook provider author I want to always use_inline_resources Scenario: Library provider with use_inline_resources and bad action_create Given a cookbook that contains a library provider with use_inline_resources and uses def action_create When I check the cookbook Then the library provider without use_inline_resources and bad action_create warning 058 should be displayed against the libraries file on line 11 Scenario: Library provider without use_inline_resources and (okay) action_create Given a cookbook that contains a library provider without use_inline_resources and uses def action_create When I check the cookbook Then the library provider without use_inline_resources and bad action_create warning 058 should not be displayed against the libraries file on any line Scenario: Library provider without use_inline_resources Given a cookbook that contains a library provider without use_inline_resources When I check the cookbook Then the library provider without use_inline_resources and bad action_create warning 058 should not be displayed against the libraries file on any line Scenario: Library provider with use_inline_resources Given a cookbook that contains a library provider with use_inline_resources When I check the cookbook Then the library provider without use_inline_resources and bad action_create warning 058 should not be displayed against the libraries file on any line foodcritic-8.1.0/features/023_check_for_condition_around_resource.feature0000644000004100000410000000553513005226016026727 0ustar www-datawww-dataFeature: Check for condition around resource In order to express conditions in a idiomatic way As a developer I want to identify resources nested in a condition that would be better expressed as a conditional attribute Scenario: No conditions Given a cookbook recipe that declares a resource with no conditions at all When I check the cookbook Then the prefer conditional attributes warning 023 should not be displayed Scenario Outline: Resource wrapped in condition Given a cookbook recipe that declares a resource nested in a condition with When I check the cookbook Then the prefer conditional attributes warning 023 Examples: | wrapping_condition | condition_attribute | warning | | if | no condition attribute | should be displayed | | unless | no condition attribute | should be displayed | | if_else | no condition attribute | should not be displayed | | unless_else | no condition attribute | should not be displayed | | if_elsif | no condition attribute | should not be displayed | | if_elsif_else | no condition attribute | should not be displayed | | if | only_if block | should not be displayed | | if | only_if string | should not be displayed | | unless | only_if block | should not be displayed | | unless | only_if string | should not be displayed | | if | not_if block | should not be displayed | | if | not_if string | should not be displayed | | unless | not_if block | should not be displayed | | unless | not_if string | should not be displayed | Scenario: Wrapped condition includes Ruby statements Given a cookbook recipe that has a wrapping condition containing a resource with no condition attribute and a Ruby statement When I check the cookbook Then the prefer conditional attributes warning 023 should not be displayed Scenario: Wrapped condition includes resource in a loop Given a cookbook recipe that has a wrapping condition containing a resource with no condition attribute within a loop When I check the cookbook Then the prefer conditional attributes warning 023 should not be displayed Scenario Outline: Multiple nested resources Given a cookbook recipe that declares multiple resources nested in a condition with no condition attribute When I check the cookbook Then the prefer conditional attributes warning 023 should not be displayed Examples: | wrapping_condition | | if | | unless | foodcritic-8.1.0/features/047_check_for_attribute_assignment_without_precedence.feature0000644000004100000410000000511413005226016031654 0ustar www-datawww-dataFeature: Check for attribute assignment without specified precedence In order to ensure that my cookbooks continue to work with Chef 11+ As a developer I want to identify node attribute assignment that does not specify the attribute precedence Scenario Outline: Attribute assignment Given a cookbook attributes file with assignment When I check the cookbook Then the attribute assignment without precedence warning 047 be displayed against the attributes file Examples: | assignment | show_warning | | node[:foo] = 'bar' | should | | node['foo'] = 'bar' | should | | node['foo'] = a_var | should | | a_var = node['foo'] | should not | | node['foo']['bar'] = 'baz' | should | | node['foo']['bar']['baz'] = 'fizz' | should | | node.foo = 'bar' | should | | node.normal.foo = 'bar' | should not | | node.normal['foo'] = 'bar' | should not | | node.default['foo'] = 'bar' | should not | | node.force_default['foo'] = 'bar' | should not | | node.default!['foo'] = 'bar' | should not | | node.set['foo'] = 'bar' | should not | | node.override['foo'] = 'bar' | should not | | node.override!['foo'] = 'bar' | should not | | node.force_override['foo'] = 'bar' | should not | | node.automatic_attrs['foo'] = 'bar' | should not | | node['foos'] << 'bar' | should | | node['foo']['bars'] << 'baz' | should | | foo = node['bar'] | should not | | baz << node['foo']['bars'] | should not | | node.run_state['foo'] = bar | should not | | foo[:bar] << node['baz'] | should not | | node.default['foo'] << bar | should not | | node.default_unless['foo'] = 'bar' | should not | | node.normal_unless['foo'] = 'bar' | should not | | node.set_unless['foo'] = 'bar' | should not | | node.override_unless['foo'] = 'bar' | should not | Scenario Outline: Attribute assignment in recipe Given a cookbook recipe file with assignment When I check the cookbook Then the attribute assignment without precedence warning 047 be displayed Examples: | assignment | show_warning | | node[:foo] = 'bar' | should | | node.normal['foo'] = 'bar' | should not | foodcritic-8.1.0/features/command_line_help.feature0000644000004100000410000000516613005226016022530 0ustar www-datawww-dataFeature: Command line help In order to be able to learn about the options available for checking my cookbooks As a developer I want to be able to interactively get help on the options from the command line Scenario: No arguments Given I have installed the lint tool When I run it on the command line with no arguments Then the simple usage text should be displayed along with a non-zero exit code Scenario: Non-existent cookbook directory Given I have installed the lint tool When I run it on the command line specifying a cookbook that does not exist Then the simple usage text should be displayed along with a non-zero exit code Scenario: Non-existent role directory Given I have installed the lint tool When I run it on the command line specifying a role directory that does not exist Then the simple usage text should be displayed along with a non-zero exit code Scenario: Non-existent environment directory Given I have installed the lint tool When I run it on the command line specifying an environment directory that does not exist Then the simple usage text should be displayed along with a non-zero exit code Scenario: Command help Given I have installed the lint tool When I run it on the command line with the help option Then the simple usage text should be displayed along with a zero exit code Scenario: Display version Given I have installed the lint tool When I run it on the command line with the version option Then the current version should be displayed Scenario: Future verbose option Given I have installed the lint tool When I run it on the command line with the unimplemented verbose option Then the simple usage text should be displayed along with a non-zero exit code Scenario: Unimplemented option Given I have installed the lint tool When I run it on the command line with the unimplemented -Z option Then the simple usage text should be displayed along with a non-zero exit code Scenario: Future verbose option plus arguments Given a cookbook that has style problems And I have installed the lint tool When I run it on the command line with the unimplemented -v option with an argument Then the simple usage text should be displayed along with a non-zero exit code Then the style warning 002 should not be displayed And the current version should not be displayed Scenario: Refer to the man page Given access to the man page documentation When I compare the man page options against the usage options Then all options should be documented in the man page foodcritic-8.1.0/features/003_check_for_chef_server.feature0000644000004100000410000000600313005226016023742 0ustar www-datawww-dataFeature: Check for Chef Server In order to ensure my cookbooks can be run with chef solo As a developer I want to identify if server-only features are used without checking to see if this is server Scenario: Search without checking for server Given a cookbook with a single recipe that searches without checking if this is server When I check the cookbook Then the check for server warning 003 should be displayed Scenario: Search with older chef-solo-search Given a cookbook with a single recipe that searches without checking if this is server And another cookbook that has an older chef-solo-search installed When I check the cookbook Then the check for server warning 003 should not be displayed Scenario: Search with chef-solo-search Given a cookbook with a single recipe that searches without checking if this is server And another cookbook that has chef-solo-search installed When I check the cookbook Then the check for server warning 003 should not be displayed Scenario: Search checking for server Given a cookbook with a single recipe that searches but checks first to see if this is server When I check the cookbook Then the check for server warning 003 should not be displayed given we have checked Scenario: Search checking for server (unless) Given a cookbook with a single recipe that searches but checks with a negative first to see if this is server When I check the cookbook Then the check for server warning 003 should not be displayed given we have checked Scenario: Search checking for server (string access) Given a cookbook with a single recipe that searches but checks first (string) to see if this is server When I check the cookbook Then the check for server warning 003 should not be displayed given we have checked Scenario: Search checking for server (method access) Given a cookbook with a single recipe that searches but checks first (method) to see if this is server When I check the cookbook Then the check for server warning 003 should not be displayed given we have checked Scenario: Search checking for server (alternation) Given a cookbook with a single recipe that searches but checks first (alternation) to see if this is server When I check the cookbook Then the check for server warning 003 should not be displayed against the condition Scenario: Search checking for server (ternary) Given a cookbook with a single recipe that searches but checks first (ternary) to see if this is server When I check the cookbook Then the check for server warning 003 should not be displayed against the condition Scenario Outline: Search checking for server (return) Given a cookbook with a single recipe that searches but returns first () if search is not supported When I check the cookbook Then the check for server warning 003 should not be displayed against the search after the conditional Examples: | format | | oneline | | multiline | foodcritic-8.1.0/features/checking_all_types_of_file.feature0000644000004100000410000000317313005226016024401 0ustar www-datawww-dataFeature: Checking all types of files In order to run foodcritic rules As a developer I want to be able to check all types of files Scenario: Checking recipe Given a cookbook with a recipe file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed Scenario: Checking attribute Given a cookbook with an attribute file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed against the attributes file Scenario: Checking metadata Given a cookbook with a metadata file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed against the metadata file Scenario: Checking provider Given a cookbook with a provider file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed against the provider file Scenario: Checking resource Given a cookbook with a resource file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed against the resource file Scenario: Checking library Given a cookbook with a library file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed against the libraries file Scenario: Checking definition Given a cookbook with a definition file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed against the definition file foodcritic-8.1.0/features/support/0000755000004100000410000000000013005226016017222 5ustar www-datawww-datafoodcritic-8.1.0/features/support/cookbook_helpers.rb0000644000004100000410000005052413005226016023105 0ustar www-datawww-datamodule FoodCritic # Helper cookbook methods for use in your steps. module CookbookHelpers # Create an attributes file that references attributes with symbols # # @param [String] type The type of node attribute to write def attributes_with_symbols(type) write_attributes %Q{#{type}[:apache][:dir] = "/etc/apache2"} end # Create a Gemfile for a cookbook def buildable_gemfile write_file "cookbooks/example/Gemfile", %q{ source 'https://rubygems.org/' gem 'rake' gem 'foodcritic', :path => '../../../..' } end # Create a cookbook that declares dependencies on external recipes. # # @param [Symbol] declaration_type The type of declaration - :brace or :bracket def cookbook_declares_dependencies(declaration_type) write_recipe %q{ include_recipe "foo::default" include_recipe "bar::default" include_recipe "baz::default" } if declaration_type == :brace write_metadata %q{ %w{foo bar baz}.each{|cookbook| depends cookbook} } else write_metadata %q{ %w{foo bar baz}.each do |cb| depends cb end } end end # Create a cookbook that will match the specified rules. # # @param [Array] codes The codes to match. Only FC002, FC003 and FC004 are supported. def cookbook_that_matches_rules(codes) recipe = "" codes.each do |code| if code == "FC002" recipe += %q{ directory "#{node['base_dir']}" do action :create end } elsif code == "FC003" recipe += %Q{nodes = search(:node, "hostname:[* TO *]")\n} elsif code == "FC004" recipe += %q{ execute "stop-jetty" do command "/etc/init.d/jetty6 stop" action :run end } elsif code == "FC006" recipe += %q{ directory "/var/lib/foo" do mode 644 action :create end } end end write_recipe(recipe) write_file("cookbooks/example/recipes/server.rb", "") write_readme("Hello World") # Don't trigger FC011 write_metadata(%q{ name 'example' maintainer 'A Maintainer' maintainer_email 'maintainer@example.com' version '0.0.1' issues_url 'http://github.com/foo/bar_cookbook/issues' source_url 'http://github.com/foo/bar_cookbook' }.strip) end # Create a cookbook with a LRWP # # @param [Hash] lwrp The options to use for the created LWRP # @option lwrp [Symbol] :default_action One of :no_default_action, :ruby_default_action, :dsl_default_action # @option lwrp [Symbol] :notifies One of :does_not_notify, :does_notify, :does_notify_without_parens, :deprecated_syntax, :class_variable # @option lwrp [Symbol] :use_inline_resources Defaults to false def cookbook_with_lwrp(lwrp) lwrp = { :default_action => false, :notifies => :does_not_notify, :use_inline_resources => false }.merge!(lwrp) ruby_default_action = %q{ def initialize(*args) super @action = :create end }.strip write_resource("site", %Q{ actions :create attribute :name, :kind_of => String, :name_attribute => true #{ruby_default_action if lwrp[:default_action] == :ruby_default_action} #{'default_action :create' if lwrp[:default_action] == :dsl_default_action} }) notifications = { :does_notify => "new_resource.updated_by_last_action(true)", :does_notify_without_parens => "new_resource.updated_by_last_action true", :deprecated_syntax => "new_resource.updated = true", :class_variable => "@updated = true" } write_provider("site", %Q{ #{'use_inline_resources' if lwrp[:use_inline_resources]} action :create do log "Here is where I would create a site" #{notifications[lwrp[:notifies]]} end }) end def cookbook_with_lwrp_actions(actions) write_resource("site", %Q{ actions #{actions.map { |a| a[:name].inspect }.join(', ')} attribute :name, :kind_of => String, :name_attribute => true }) write_provider("site", actions.map { |a| provider_action(a) }.join("\n")) end # Create an cookbook with the maintainer specified in the metadata # # @param [String] name The maintainer name # @param [String] email The maintainer email address def cookbook_with_maintainer(name, email) write_recipe %q{ # # Cookbook Name:: example # Recipe:: default # # Copyright 2011, YOUR_COMPANY_NAME # # All rights reserved - Do Not Redistribute # } fields = {} fields["maintainer"] = name unless name.nil? fields["maintainer_email"] = email unless email.nil? write_metadata %Q{ #{fields.map { |field, value| %Q{#{field}\t"#{value}"} }.join("\n")} license "All rights reserved" description "Installs/Configures example" long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc')) version "0.0.1" } end # Create an environment file # # @param [Hash] options The options to use for the environment # @option options [String] :dir The relative directory to write to # @option options [String] :environment_name The name of the environment declared in the file # @option options [String] :file_name The containing file relative to the environments directory def environment(options = {}) options = { :dir => "environments" }.merge(options) write_file "#{options[:dir]}/#{options[:file_name]}", %Q{ #{Array(options[:environment_name]).map { |r| "name #{r}" }.join("\n")} cookbook "apache2" }.strip end # Create a placeholder minitest spec that would be linted due to its path # unless an exclusion is specified. def minitest_spec_attributes write_file "cookbooks/example/test/attributes/default_spec.rb", %q{ describe 'Example::Attributes::Default' do end } end def provider_action(action) case action[:notify_type] when :none then %Q{ action #{action[:name].inspect} do log "Would take action here" end } when :updated_by_last_action then %Q{ action #{action[:name].inspect} do log "Would take action here" # Explicitly update new_resource.updated_by_last_action(true) end } when :converge_by then %Q{ action #{action[:name].inspect} do converge_by "#{action[:name]} site" do log "Would take action here" end end } end end # Create a Rakefile that uses the linter rake task # # @param [Symbol] task Type of task # @param [Hash] options Task options # @option options [String] :name Task name # @option options [String] :files Files to process # @option options [String] :options The options to set on the rake task def rakefile(task, options) rakefile_content = "task :default => []" task_def = case task when :no_block then "FoodCritic::Rake::LintTask.new" else %Q{ FoodCritic::Rake::LintTask.new do |t| #{"t.name = '#{options[:name]}'" if options[:name]} #{"t.files = #{options[:files]}" if options[:files]} #{"t.options = #{options[:options]}" if options[:options]} end } end if task_def rakefile_content = %Q{ require 'foodcritic' task :default => [:#{options[:name] ? options[:name] : 'foodcritic'}] #{task_def} } end write_file "cookbooks/example/Rakefile", rakefile_content end # Create a recipe that downloads a file # # @param [Symbol] path_type The type of path, one of: :tmp_dir, :chef_file_cache_dir, :home_dir def recipe_downloads_file(path_type) download_path = { :tmp_dir => "/tmp/large-file.tar.gz", :tmp_dir_expr => '/tmp/#{file}', :home_dir => "/home/ernie/large-file.tar.gz", :chef_file_cache_dir => '#{Chef::Config[:file_cache_path]}/large-file.tar.gz' }[path_type] write_recipe %Q{ remote_file "#{download_path}" do source "http://www.example.org/large-file.tar.gz" end } end # Install a gem using the specified approach. # # @param [Symbol] type The type of approach, one of :simple, :compile_time, # :compile_time_from_array, :compile_time_from_word_list # @param [Symbol] action Either :install or :upgrade def recipe_installs_gem(type, action = :install) case type when :simple write_recipe %Q{ gem_package "bluepill" do action :#{action} end }.strip when :compile_time write_recipe %Q{ r = gem_package "mysql" do action :nothing end r.run_action(:#{action}) Gem.clear_paths }.strip when :compile_time_from_array write_recipe %Q{ ['foo', 'bar', 'baz'].each do |pkg| r = gem_package pkg do action :nothing end r.run_action(:#{action}) end }.strip when :compile_time_from_word_list write_recipe %Q{ %w{foo bar baz}.each do |pkg| r = gem_package pkg do action :nothing end r.run_action(:#{action}) end }.strip else raise "Unrecognised type: #{type}" end end # Create a recipe that declares a resource with the specified file mode. # # @param [String] type The type of resource (file, template) # @param [String] mode The file mode as a string # @param [String] comment Comment that may specify to exclude a match def recipe_resource_with_mode(type, mode, comment = "") source_att = type == "template" ? 'source "foo.erb"' : "" write_recipe %Q{ #{type} "/tmp/something" do #{comment} #{source_att} owner "root" group "root" mode #{mode} action :create end } end # Create a recipe that controls a service using the specified method. # # @param [Symbol] method How to start the service, one of: :init_d, :invoke_rc_d, :upstart, :service, :service_full_path. # @param [Boolean] do_sleep Whether to prefix the service cmd with a bash sleep # @param [Symbol] action The action to take (start, stop, reload, restart) def recipe_controls_service(method = :service, do_sleep = false, action = :start) cmds = { :init_d => "/etc/init.d/foo #{action}", :invoke_rc_d => "invoke-rc.d foo #{action}", :upstart => "#{action} foo", :service => "service foo #{action}", :service_full_path => "/sbin/service foo #{action}" } write_recipe %Q{ execute "#{action}-foo-service" do command "#{do_sleep ? 'sleep 5; ' : ''}#{cmds[method]}" action :run end } end # Create a recipe with an external dependency on another cookbook. # # @param [Hash] dep The options to use for dependency # @option dep [Boolean] :is_declared True if this dependency has been declared in the cookbook metadata # @option dep [Boolean] :is_scoped True if the include_recipe references a specific recipe or the cookbook # @option dep [Boolean] :parentheses True if the include_recipe is called with parentheses def recipe_with_dependency(dep) dep = { :is_scoped => true, :is_declared => true, :parentheses => false }.merge!(dep) recipe = "foo#{dep[:is_scoped] ? '::default' : ''}" write_recipe(if dep[:parentheses] "include_recipe('#{recipe}')" else "include_recipe '#{recipe}'" end) write_metadata %Q{ version "1.9.0" depends "#{dep[:is_declared] ? 'foo' : 'dogs'}" } end # Create a recipe with a directory resource # # @param [Symbol] path_expr_type The type of path expression, one of: :compound_symbols, :interpolated_string, # :interpolated_symbol, :interpolated_symbol_and_literal, :literal_and_interpolated_symbol, :string_literal. def recipe_with_dir_path(path_expr_type) path = { :compound_symbols => '#{node[:base_dir]}#{node[:sub_dir]}', :interpolated_string => %q{#{node['base_dir']}}, :interpolated_symbol => '#{node[:base_dir]}', :interpolated_symbol_and_literal => '#{node[:base_dir]}/sub_dir', :literal_and_interpolated_symbol => 'base_dir/#{node[:sub_dir]}', :string_literal => "/var/lib/foo" }[path_expr_type] write_recipe %Q{ directory "#{path}" do owner "root" group "root" mode "0755" action :create end } end # Create a recipe with the specified resource type and attribute names. # # @param [String] type The type of resource # @param [Array] attribute_names The attributes to declare on this resource def recipe_with_resource(type, attribute_names) write_recipe %Q{ #{type} "resource-name" do #{attribute_names.join(" 'foo'\n")} 'bar' end } end # Create a recipe with a ruby_block resource. # # @param [Symbol] length A :short or :long block, or :both def recipe_with_ruby_block(length) recipe = "" if length == :short || length == :both recipe << %q{ ruby_block "subexpressions" do block do rc = Chef::Util::FileEdit.new("/foo/bar.conf") rc.search_file_replace_line(/^search/, "search #{node["foo"]["bar"]} compute-1.internal") rc.search_file_replace_line(/^domain/, "domain #{node["foo"]["bar"]}") rc.write_file end action :create end } end if length == :long || length == :both recipe << %q{ ruby_block "too_long" do block do begin do_something('with argument') do_something_else('with another argument') foo = Foo.new('bar') foo.activate_turbo_boost foo.each do |thing| case thing when "fee" puts 'Fee' when "fi" puts 'Fi' when "fo" puts 'Fo' else puts "Fum" end end rescue Some::Exception Chef::Log.warn "Problem activating the turbo boost" end end action :create end } end write_recipe(recipe) end # Create a recipe that performs a search of the specified type. # # @param [Symbol] type The type of search. One of: :invalid_syntax, :valid_syntax, :with_subexpression. def recipe_with_search(type) search = { :invalid_syntax => "run_list:recipe[foo::bar]", :valid_syntax => 'run_list:recipe\[foo\:\:bar\]', :with_subexpression => %q{roles:#{node['foo']['role']}} }[type] write_recipe %Q{ search(:node, "#{search}") do |matching_node| puts matching_node.to_s end } end # Create a role file # # @param [Hash] options The options to use for the role # @option options [String] :role_name The name of the role declared in the role file # @option options [String] :file_name The containing file relative to the roles directory # @option options [Symbol] :format Either :ruby or :json. Default is :ruby def role(options = {}) options = { :format => :ruby, :dir => "roles" }.merge(options) content = if options[:format] == :json %Q{ { "chef_type": "role", "json_class": "Chef::Role", #{Array(options[:role_name]).map { |r| "name: #{r}," }.join("\n")} "run_list": [ "recipe[apache2]", ] } } else %Q{ #{Array(options[:role_name]).map { |r| "name #{r}" }.join("\n")} run_list "recipe[apache2]" } end write_file "#{options[:dir]}/#{options[:file_name]}", content.strip end # Create a rule with the specified Chef version constraints # # @param [String] from_version The from version # @param [String] to_version The to version def rule_with_version_constraint(from_version, to_version) constraint = if from_version && to_version %Q{ applies_to do |version| version >= gem_version("#{from_version}") && version <= gem_version("#{to_version}") end } elsif from_version %Q{ applies_to do |version| version >= gem_version("#{from_version}") end } elsif to_version %Q{ applies_to do |version| version <= gem_version("#{to_version}") end } end write_rule %Q{ rule "FCTEST001", "Test Rule" do #{constraint} recipe do |ast, filename| [file_match(filename)] end end } end # Return the provided string or nil if 'unspecified' # # @param [String] str The string # @return [String] The string or nil if 'unspecified' def nil_if_unspecified(str) str == "unspecified" ? nil : str end # Create a README with the provided content. # # @param [String] content The recipe content. # @param [String] cookbook_name Optional name of the cookbook. def write_readme(content, cookbook_name = "example") write_file "cookbooks/#{cookbook_name}/README.md", content.strip end # Create a recipe with the provided content. # # @param [String] content The recipe content. # @param [String] cookbook_name Optional name of the cookbook. def write_recipe(content, cookbook_name = "example") write_file "cookbooks/#{cookbook_name}/recipes/default.rb", content.strip end # Create a rule with the provided content. # # @param [String] content The rule content. def write_rule(content) write_file "rules/test.rb", content.strip end # Create attributes with the provided content. # # @param [String] content The attributes content. def write_attributes(content) write_file "cookbooks/example/attributes/default.rb", content.strip end # Create a definition with the provided content. # # @param [String] name The definition name. # @param [String] content The definition content. def write_definition(name, content) write_file "cookbooks/example/definitions/#{name}.rb", content.strip end # Create a library with the provided content. # # @param [String] name The library name. # @param [String] content The library content. def write_library(name, content) write_file "cookbooks/example/libraries/#{name}.rb", content.strip end # Create metdata with the provided content. # # @param [String] content The metadata content. def write_metadata(content) write_file "cookbooks/example/metadata.rb", content.strip end # Create a resource with the provided content. # # @param [String] name The resource name. # @param [String] content The resource content. def write_resource(name, content) write_file "cookbooks/example/resources/#{name}.rb", content.strip end # Create a provider with the provided content. # # @param [String] name The resource name. # @param [String] content The resource content. def write_provider(name, content) write_file "cookbooks/example/providers/#{name}.rb", content.strip end end end World(FoodCritic::CookbookHelpers) foodcritic-8.1.0/features/support/env.rb0000644000004100000410000000046413005226016020343 0ustar www-datawww-databegin require "simplecov" SimpleCov.start do add_filter "/features/" end rescue LoadError warn "warning: simplecov gem not found; skipping coverage" end require "aruba/cucumber" require "foodcritic" require "minitest/spec" MiniTest::Spec.new(nil) Before do @aruba_timeout_seconds = 300 end foodcritic-8.1.0/features/support/command_helpers.rb0000644000004100000410000003674613005226016022727 0ustar www-datawww-datamodule FoodCritic # Helpers for asserting that the correct warnings are displayed. # # Unless the environment variable FC_FORK_PROCESS is set to 'true' then the features will be run in the same process. module CommandHelpers include MiniTest::Assertions attr_writer :assertions def assertions @assertions ||= 0 end # The warning codes and messages displayed to the end user. WARNINGS = { "FC001" => "Use strings in preference to symbols to access node attributes", "FC002" => "Avoid string interpolation where not required", "FC003" => "Check whether you are running with chef server before using server-specific features", "FC004" => "Use a service resource to start and stop services", "FC005" => "Avoid repetition of resource declarations", "FC006" => "Mode should be quoted or fully specified when setting file permissions", "FC007" => "Ensure recipe dependencies are reflected in cookbook metadata", "FC008" => "Generated cookbook metadata needs updating", "FC009" => "Resource attribute not recognised", "FC010" => "Invalid search syntax", "FC011" => "Missing README in markdown format", "FC012" => "Use Markdown for README rather than RDoc", "FC013" => "Use file_cache_path rather than hard-coding tmp paths", "FC014" => "Consider extracting long ruby_block to library", "FC015" => "Consider converting definition to a Custom Resource", "FC016" => "LWRP does not declare a default action", "FC017" => "LWRP does not notify when updated", "FC018" => "LWRP uses deprecated notification syntax", "FC019" => "Access node attributes in a consistent manner", "FC021" => "Resource condition in provider may not behave as expected", "FC022" => "Resource condition within loop may not behave as expected", "FC023" => "Prefer conditional attributes", "FC024" => "Consider adding platform equivalents", "FC025" => "Prefer chef_gem to compile-time gem install", "FC026" => "Conditional execution block attribute contains only string", "FC027" => "Resource sets internal attribute", "FC028" => "Incorrect #platform? usage", "FC029" => "No leading cookbook name in recipe metadata", "FC030" => "Cookbook contains debugger breakpoints", "FC031" => "Cookbook without metadata file", "FC032" => "Invalid notification timing", "FC033" => "Missing template", "FC034" => "Unused template variables", "FC037" => "Invalid notification action", "FC038" => "Invalid resource action", "FC039" => "Node method cannot be accessed with key", "FC040" => "Execute resource used to run git commands", "FC041" => "Execute resource used to run curl or wget commands", "FC042" => "Prefer include_recipe to require_recipe", "FC043" => "Prefer new notification syntax", "FC044" => "Avoid bare attribute keys", "FC045" => "Metadata does not contain cookbook name", "FC046" => "Attribute assignment uses assign unless nil", "FC047" => "Attribute assignment does not specify precedence", "FC048" => "Prefer Mixlib::ShellOut", "FC049" => "Role name does not match containing file name", "FC050" => "Name includes invalid characters", "FC051" => "Template partials loop indefinitely", "FC052" => 'Metadata uses the unimplemented "suggests" keyword', "FC053" => 'Metadata uses the unimplemented "recommends" keyword', # FC054 was yanked and is considered reserved, do not reuse it "FC055" => "Ensure maintainer is set in metadata", "FC056" => "Ensure maintainer_email is set in metadata", "FC057" => "Library provider does not declare use_inline_resources", "FC058" => "Library provider declares use_inline_resources and declares #action_ methods", "FC059" => "LWRP provider does not declare use_inline_resources", "FC060" => "LWRP provider declares use_inline_resources and declares #action_ methods", "FC061" => "Valid cookbook versions are of the form x.y or x.y.z", "FC062" => "Cookbook should have version metadata", "FC063" => "Cookbook incorrectly depends on itself", "FC064" => "Ensure issues_url is set in metadata", "FC065" => "Ensure source_url is set in metadata", "FCTEST001" => "Test Rule", } # If the cucumber features should run foodcritic in the same process or spawn a separate process. def self.running_in_process? ! (ENV.has_key?("FC_FORK_PROCESS") && ENV["FC_FORK_PROCESS"] == true.to_s) end # Capture an error expected when calling a command. def capture_error begin yield @error = all_output unless last_exit_status == 0 rescue => @error end end # Return the last error captured # # @return [String] The last error captured def last_error @error.respond_to?(:message) ? @error.message : @error end # Expect a line of context # # @param [Number] line_no The line number # @param [String] text The text of the matching line def expect_line_shown(line_no, text) expect_output %r{^ +#{Regexp.escape(line_no.to_s)}\|#{Regexp.escape(text)}$} end # Expect a warning to be included in the command output. # # @param [String] code The warning code to check for. # @param [Hash] options The warning options. # @option options [Integer] :line The line number the warning should appear on - nil for any line. # @option options [Boolean] :expect_warning If false then assert that a warning is NOT present # @option options [String] :file The path to the file the warning should be raised against # @option options [Symbol] :file_type Alternative to specifying file name. One of: :attributes, :definition, # :metadata, :provider, :resource def expect_warning(code, options = {}) if options.has_key?(:file_type) options[:file] = { :attributes => "attributes/default.rb", :definition => "definitions/apache_site.rb", :metadata => "metadata.rb", :provider => "providers/site.rb", :resource => "resources/site.rb", :libraries => "libraries/lib.rb" }[options[:file_type]] end options = { :line => 1, :expect_warning => true, :file => "recipes/default.rb" }.merge!(options) unless options[:file].include?("roles") || options[:file].include?("environments") options[:file] = "cookbooks/example/#{options[:file]}" end if options[:warning_only] warning = "#{code}: #{WARNINGS[code]}" else warning = "#{code}: #{WARNINGS[code]}: #{options[:file]}:#{options[:line]}#{"\n" if ! options[:line].nil?}" end options[:expect_warning] ? expect_output(warning) : expect_no_output(warning) end # Expect a warning not to be included in the command output. # # @see CommandHelpers#expect_warning def expect_no_warning(code, options = { :expect_warning => false }) expect_warning(code, options) end # Expect a command line option / switch to be included in the usage. # # @param [String] short_switch The short version of the switch # @param [String] long_switch The long descriptive version of the switch # @param [String] description The description of the switch def expect_usage_option(short_switch, long_switch, description) expected_switch = "-#{Regexp.escape(short_switch)}, --#{Regexp.escape(long_switch)}[ ]+#{Regexp.escape(description)}" expect_output(Regexp.new(expected_switch)) end def has_test_warnings?(output) output.split("\n").grep(/FC[0-9]+:/).map do |warn| File.basename(File.dirname(warn.split(":").take(3).last.strip)) end.include?("test") end def man_page_options man_path = Pathname.new(__FILE__) + "../../../man/foodcritic.1.ronn" option_lines = File.read(man_path).split("## ").find do |s| s.start_with?("OPTIONS") end.split("\n").select { |o| o.start_with?(" *") } option_lines.map do |o| o.sub("`[`no-`]`", "").split("`").select { |f| f.include?("-") } end.map do |option| { :short => option.first.sub(/^-/, ""), :long => option.last.sub(/^--/, "") } end.sort_by { |o| o[:short] } end # Assert that the usage message is displayed. # # @param [Boolean] is_exit_zero The exit code to check for. def usage_displayed(is_exit_zero) expect_output "foodcritic [cookbook_paths]" usage_options.each do |option| expect_usage_option(option[:short], option[:long], option[:description]) end if is_exit_zero assert_no_error_occurred else assert_error_occurred end end def usage_options [ { :short => "c", :long => "chef-version VERSION", :description => "Only check against rules valid for this version of Chef." }, { :short => "f", :long => "epic-fail TAGS", :description => "Fail the build based on tags. Use 'any' to fail on all warnings." }, { :short => "l", :long => "list", :description => "List all enabled rules and their descriptions." }, { :short => "t", :long => "tags TAGS", :description => "Check against (or exclude ~) rules with the specified tags." }, { :short => "B", :long => "cookbook-path PATH", :description => "Cookbook path(s) to check." }, { :short => "C", :long => "[no-]context", :description => "Show lines matched against rather than the default summary." }, { :short => "E", :long => "environment-path PATH", :description => "Environment path(s) to check." }, { :short => "I", :long => "include PATH", :description => "Additional rule file path(s) to load." }, { :short => "R", :long => "role-path PATH", :description => "Role path(s) to check." }, { :short => "S", :long => "search-grammar PATH", :description => "Specify grammar to use when validating search syntax." }, { :short => "V", :long => "version", :description => "Display the foodcritic version." }, { :short => "X", :long => "exclude PATH", :description => "Exclude path(s) from being linted." }, ] end def usage_options_for_diff usage_options.map do |o| { :short => o[:short], :long => o[:long].split(" ").first.sub(/^\[no-\]/, "") } end.sort_by { |o| o[:short] } end end # Helpers used when features are executed in-process. module InProcessHelpers # Assert that the output contains the specified warning. # # @param [String] output The warning to check for. def expect_output(output) if output.respond_to?(:~) @review.must_match(output) else @review.must_include(output) end end # Assert that the output does not contain the specified warning. # # @param [String] output The output to check for. def expect_no_output(output) if output.respond_to?(:~) @review.wont_match(output) else @review.wont_include(output) end end # Assert that an error occurred following a lint check. def assert_error_occurred @status.wont_equal 0 end # Assert that no error occurred following a lint check. def assert_no_error_occurred @status.must_equal 0 end # Assert that warnings have not been raised against the test code which # should have been excluded from linting. def assert_no_test_warnings refute has_test_warnings?(@review) end # Assert that warnings have been raised against the test code which # shouldn't have been excluded from linting. def assert_test_warnings assert has_test_warnings?(@review) end # Run a lint check with the provided command line arguments. # # @param [Array] cmd_args The command line arguments. def run_lint(cmd_args) cd "." do show_context = cmd_args.include?("-C") review, @status = FoodCritic::Linter.run(CommandLine.new(cmd_args)) @review = if review.nil? || (review.respond_to?(:warnings) && review.warnings.empty?) "" elsif show_context ContextOutput.new.output(review) else "#{review}\n" end end end end # For use with steps that use bundler and rake. These will always be run # via Aruba. module BuildHelpers # Assert the build outcome # # @param [Boolean] success True if the build should succeed # @param [Array] warnings The warnings expected def assert_build_result(success, warnings) success ? assert_no_error_occurred : assert_error_occurred warnings.each do |code| expect_warning(code, :warning_only => true) end end # Assert that warnings have not been raised against the test code which # should have been excluded from linting. def assert_no_test_warnings refute has_test_warnings?(all_output) end # Assert that warnings have been raised against the test code which # shouldn't have been excluded from linting. def assert_test_warnings assert has_test_warnings?(all_output) end # The available tasks for this build # # @return [Array] Task name and description def build_tasks all_output.split("\n").map do |task| next unless task.start_with? "rake" task.split("#").map { |t| t.strip.sub(/^rake /, "") } end.compact end # List the defined Rake tasks def list_available_build_tasks cd "cookbooks/example" unset_bundler_env_vars run_simple "bundle exec rake -T" end # Run a build for a Rakefile that uses the lint rake task def run_build cd "cookbooks/example" run_simple "bundle exec rake", false end # We want to avoid traversing vendored gems because of the unnecessary # performance hit and because gems may contain deeply-nested code which # will blow the stack on parsing. def vendor_gems cd "cookbooks/example" unset_bundler_env_vars run_simple "bundle install --path vendor/bundle" cd "../.." end end # Helpers used when features are executed out of process. module ArubaHelpers include BuildHelpers # Assert that the output contains the specified warning. # # @param [String] output The output to check for. def expect_output(output) if output.respond_to?(:~) assert_matching_output(output.to_s, all_output) else assert_partial_output(output, all_output) end end # Assert that the output does not contain the specified warning. # # @param [String] output The output to check for. def expect_no_output(output) if output.respond_to?(:~) assert_matching_output('^((?!#{output}).)*$', all_output) else assert_no_partial_output(output, all_output) end end # Assert that an error occurred following a lint check. def assert_error_occurred assert_not_exit_status 0 end # Assert that no error occurred following a lint check. def assert_no_error_occurred assert_exit_status(0) end # Run a lint check with the provided command line arguments. # # @param [Array] cmd_args The command line arguments. def run_lint(cmd_args) run_simple(unescape("foodcritic #{cmd_args.join(' ')}"), false) end end end World(FoodCritic::CommandHelpers) if FoodCritic::CommandHelpers.running_in_process? World(FoodCritic::InProcessHelpers) else World(FoodCritic::ArubaHelpers) end foodcritic-8.1.0/features/041_check_raw_download.feature0000644000004100000410000000330013005226016023260 0ustar www-datawww-dataFeature: Check for direct usage of curl or wget In order to fetch remote artefacts idiomatically As a developer I want to use resources to download rather than using curl or wget Scenario Outline: Execute resource Given a cookbook recipe with an execute resource named When I check the cookbook Then the execute resource used to run curl or wget commands warning 041 be displayed Examples: | name | display | | curl 'http://example.org/' | should not | | wget 'http://example.org/' | should | | which curl | should not | | sudo wget 'http://example.org/' | should | | reboot | should not | Scenario Outline: Execute resource Given a cookbook recipe with an execute resource that runs the command When I check the cookbook Then the execute resource used to run curl or wget commands warning 041 be displayed Examples: | command | display | | which curl | should not | | sudo wget 'http://example.org/' | should | | curl -X POST 'http://example.org/' | should not | | curl 'http://example.org/' | should not | | curl 'http://example.org/' -o foo | should | | curl 'http://example.org/' --output foo | should | | curl 'http://example.org/' &>bar | should | | curl -o baz 'http://example.org/'> bing | should | | wget 'http://example.org/' | should | | mkdir foo && wget 'http://example.org/' | should | foodcritic-8.1.0/features/040_check_raw_git_usage.feature0000644000004100000410000000427313005226016023431 0ustar www-datawww-dataFeature: Check for direct usage of git In order to access source control repositories idiomatically As a developer I want to use resources for repository access rather than executing git directly Scenario Outline: Execute resource Given a cookbook recipe with an execute resource named When I check the cookbook Then the execute resource used to run git commands warning 040 be displayed Examples: | name | display | | git pull | should | | git clone | should | | git fetch | should | | git checkout | should | | git reset --hard | should | | git show | should not | | echo 'bob' && git show | should not | | which foo | should not | Scenario Outline: Execute resource Given a cookbook recipe with an execute resource that runs the command When I check the cookbook Then the execute resource used to run git commands warning 040 be displayed Examples: | command | display | | git clone https://github.com/git/git.git | should | | git clone --depth 10 https://github.com/git/git.git | should | | git pull | should | | git fetch origin | should | | git checkout master | should | | git reset --hard | should | | git status && git pull | should | | git show | should not | | echo 'bob' && git show | should not | | gitk | should not | | curl http://github.com/ | should not | Scenario: Multiple execute resources Given a cookbook recipe with multiple execute resources where the last uses git When I check the cookbook Then the execute resource used to run git commands warning 040 should be displayed against the last resource foodcritic-8.1.0/features/045_check_for_cookbook_name_in_metadata.feature0000644000004100000410000000165313005226016026617 0ustar www-datawww-dataFeature: Check for cookbook name in metadata In order to avoid complications where a cookbook repository name differs from the cookbook name As a developer I want to set the cookbook name within the metadata Scenario: Name specified in metadata Given a cookbook with metadata that specifies the cookbook name When I check the cookbook Then the consider setting cookbook name warning 045 should not be displayed against the metadata file Scenario: Name not specified in metadata Given a cookbook with metadata that does not specify the cookbook name When I check the cookbook Then the consider setting cookbook name warning 045 should be displayed against the metadata file Scenario: No cookbook metadata Given a cookbook that does not have defined metadata When I check the cookbook Then the consider setting cookbook name warning 045 should be displayed against the metadata file foodcritic-8.1.0/features/031_check_for_metadata_existence.feature0000644000004100000410000000116513005226016025303 0ustar www-datawww-dataFeature: Check for metadata existence In order to ensure that cookbook has the minimum As a developer I want to verify that the metadata file exist Scenario: Cookbook without metadata file Given a cookbook that does not have defined metadata When I check the cookbook Then the non existing metadata warning 031 should be displayed against the metadata file Scenario: Cookbook with metadata file Given a cookbook that has the default boilerplate metadata generated by knife When I check the cookbook Then the non existing metadata warning 031 should not be displayed against the metadata file foodcritic-8.1.0/features/038_check_for_invalid_action.feature0000644000004100000410000000365313005226016024452 0ustar www-datawww-dataFeature: Check for invalid resource actions In order to avoid failure at converge time As a developer I want to identify resources that have an invalid action Scenario: Resource with default action Given a cookbook recipe with a service resource that does not specify an action When I check the cookbook Then the invalid resource action warning 038 should not be displayed Scenario: Resource with variable action Given a cookbook recipe with a service resource with an action specified via a variable When I check the cookbook Then the invalid resource action warning 038 should not be displayed Scenario Outline: Resource actions Given a cookbook recipe with a resource with action When I check the cookbook Then the invalid resource action warning 038 be displayed Examples: | resource | action | display | | service | restart | should not | | service | nothing | should not | | service | none | should | | service | create | should | | execute | run | should not | | execute | go | should | | foo | none | should not | Scenario Outline: Multiple actions Given a cookbook recipe with a resource with actions When I check the cookbook Then the invalid resource action warning 038 be displayed Examples: | resource | actions | display | | service | enable, start | should not | | service | enble, start | should | | foo | energize, revitalize | should not | Scenario Outline: Try to mask a systemd service Given a recipe that tries to mask a systemd service When I check the cookbook specifying as the Chef version Then the invalid resource action warning 038 should be Examples: | version | shown | | 12.8.1 | false | | 12.7.2 | true | foodcritic-8.1.0/features/043_check_for_old_notification_style.feature0000644000004100000410000000224313005226016026221 0ustar www-datawww-dataFeature: Check for old notification style In order to be able to notify a resource that has not yet been declared As a developer I want to use the new-style notification syntax Scenario: No notification Given a cookbook recipe with no notifications When I check the cookbook Then the prefer new notification syntax warning 043 should not be displayed Scenario: New-style notification Given a cookbook recipe with a resource that notifies a service to restart When I check the cookbook Then the prefer new notification syntax warning 043 should not be displayed Scenario: Old-style notification Given a cookbook recipe with a resource that uses the old notification syntax When I check the cookbook Then the prefer new notification syntax warning 043 should be displayed Scenario Outline: Applicability by Chef version Given a cookbook recipe with a resource that uses the old notification syntax When I check the cookbook specifying as the Chef version Then the prefer new notification syntax warning 043 be displayed Examples: | version | displayed | | 11.4.0 | should | foodcritic-8.1.0/features/055_check_for_no_maintainer.feature0000644000004100000410000000221213005226016024277 0ustar www-datawww-dataFeature: Check for no maintainer In order to be able to upload my cookbook As a developer I want to be notified when my cookbook metadata does not specify the maintainer Scenario: Metadata without a maintainer Given a cookbook with metadata that does not include a maintainer keyword When I check the cookbook Then the metadata missing maintainer warning 055 should be shown against the metadata file Scenario: Metadata with a maintainer Given a cookbook with metadata that includes a maintainer keyword When I check the cookbook Then the metadata missing maintainer warning 055 should be not shown against the metadata file Scenario: Metadata with a maintainer that is an expression Given a cookbook with metadata that includes a maintainer expression When I check the cookbook Then the metadata missing maintainer warning 055 should be not shown against the metadata file Scenario: Cookbook without metadata file Given a cookbook that does not have defined metadata When I check the cookbook Then the metadata missing maintainer warning 055 should be not shown against the metadata file foodcritic-8.1.0/features/specify_search_grammar.feature0000644000004100000410000000223713005226016023564 0ustar www-datawww-dataFeature: Specify search grammar In order to allow the use of alternate search grammars when validating search syntax As a developer I want to be able to specify the grammar to use as a command line option Scenario: No grammar passed Given a cookbook recipe that attempts to perform a search with invalid syntax When I check the cookbook Then the invalid search syntax warning 010 should be displayed Scenario: Missing grammar passed Given a cookbook recipe that attempts to perform a search with invalid syntax When I check the cookbook specifying a search grammar that does not exist Then the check should abort with an error Scenario: Invalid grammar passed Given a cookbook recipe that attempts to perform a search with invalid syntax When I check the cookbook specifying a search grammar that is not in treetop format Then the check should abort with an error Scenario: Valid grammar passed Given a cookbook recipe that attempts to perform a search with invalid syntax When I check the cookbook specifying a search grammar that is a valid treetop grammar Then the invalid search syntax warning 010 should be displayed foodcritic-8.1.0/features/007_check_for_undeclared_recipe_dependencies.feature0000644000004100000410000000475413005226016027631 0ustar www-datawww-dataFeature: Check for undeclared recipe dependencies In order to prevent failure of my Chef run due to a missing cookbook As a developer I want to identify included recipes that are not expressed in cookbook metadata Scenario Outline: Cookbook includes undeclared recipe dependency Given a cookbook recipe that includes an undeclared recipe dependency When I check the cookbook Then the undeclared dependency warning 007 should be displayed Examples: | qualifiers | | | | with parentheses | | unscoped | | unscoped with parentheses | Scenario: Cookbook includes recipe via expression Given a cookbook recipe that includes a recipe name from an expression When I check the cookbook Then the undeclared dependency warning 007 should not be displayed Scenario Outline: Cookbook includes recipe via expression (embedded) Given a cookbook recipe that includes a recipe name from an embedded expression When I check the cookbook Then the undeclared dependency warning 007 should not be displayed Examples: | recipe_expression | | foo::#{node['foo']['fighter']} | | #{cookbook_name}::other | | #{cbk}_other::other | Scenario Outline: Declared dependencies Given a cookbook recipe that includes When I check the cookbook Then the undeclared dependency warning 007 should not be displayed Examples: | dependency_type | | a declared recipe dependency | | a declared recipe dependency unscoped | | several declared recipe dependencies - block | | several declared recipe dependencies - brace | | a local recipe | | a local recipe where the directory is differently named | Scenario: Cookbook includes mix of declared and undeclared recipe dependencies Given a cookbook recipe that includes both declared and undeclared recipe dependencies When I check the cookbook Then the undeclared dependency warning 007 should be displayed only for the undeclared dependencies Scenario: Cookbook has no metadata file Given a cookbook that does not have defined metadata When I check the cookbook Then the undeclared dependency warning 007 should not be displayed And no error should have occurred foodcritic-8.1.0/features/ignore_via_line_comments.feature0000644000004100000410000000524613005226016024130 0ustar www-datawww-dataFeature: Ignoring rules on per line basis To ignore specific warnings on some lines As a developer I want to add an ignore comment Scenario Outline: Ignoring Given a file resource declared with the mode 644 with comment When I check the cookbook Then the warning 006 should Examples: | comment | shown | | | be shown | | # | be shown | | # foo bar baz | be shown | | # ~FC006 | not be shown | | # ~FC006 is a false positive | not be shown | | #~FC006 | not be shown | | #~FC022 | be shown | | # ~FC006 | not be shown | | # ~FC003,~FC006,~FC009 | not be shown | | # ~FC003 ~FC006 ~FC009 | not be shown | | # ~FC003, ~FC006, ~FC009 | not be shown | | # ~FC003,~FC009 | be shown | | # FC006 | be shown | | # ~ FC006 | be shown | | # fc006 | be shown | | # ~006 | be shown | | # ~style | be shown | | # ~files | not be shown | Scenario Outline: Ignoring cookbook level rules Given a cookbook with a single recipe that triggers FC019 with comment And metadata When I check the cookbook Then the attribute consistency warning 019 should Examples: | comment | shown | | | be shown | | #~FC019 | be not shown | Scenario Outline: Multiple warnings Given a file with multiple errors on one line with comment When I check the cookbook Then the warnings shown should be Examples: | comment | warnings | | | FC002,FC039 | | # ~FC002,~FC007 | FC002 | | # ~FC002,~FC039 | | | # ~FC002 | FC039 | Scenario Outline: Ignoring role rules Given a ruby role that triggers FC049 with comment When I check the role directory Then the role name does not match file name warning 049 should Examples: | comment | shown | | | be shown | | #~FC049 | not be shown | Scenario Outline: Ignoring environment rules Given a ruby environment that triggers FC050 with comment When I check the environment directory Then the invalid environment name warning 050 should Examples: | comment | shown | | | be shown | | #~FC050 | not be shown | foodcritic-8.1.0/features/028_check_for_incorrect_platform_method.feature0000644000004100000410000000164213005226016026716 0ustar www-datawww-dataFeature: Check for incorrect platform method usage In order to avoid running code intended for another platform As a developer I want to identify conditionals that wrongly use node.platform? Scenario Outline: Platform conditionals Given a cookbook recipe that wraps a platform-specific resource in a conditional When I check the cookbook Then the incorrect platform usage warning 028 should be Examples: | conditional | show_warning | | platform? 'linux' | not shown | | platform?('linux') | not shown | | platform?('linux', 'mac_os_x') | not shown | | node.platform? 'linux' | shown | | node.platform?('linux') | shown | | node.platform?('linux', 'mac_os_x') | shown | | node.platform == 'linux' | not shown | foodcritic-8.1.0/features/005_check_for_resource_repetition.feature0000644000004100000410000000612513005226016025547 0ustar www-datawww-dataFeature: Check for resource repetition In order to write my recipe without being needlessly verbose As a developer I want to identify resources that vary minimally so I can reduce copy and paste Scenario: Package resource varying only a single attribute Given a cookbook recipe that declares multiple resources varying only in the package name When I check the cookbook Then the service resource warning 005 should be displayed Scenario: Package resource varying only a single attribute for a small number of resources Given a cookbook recipe that declares two or fewer resources varying only in the package name When I check the cookbook Then the service resource warning 005 should not be displayed Scenario: Package resource varying multiple attributes Given a cookbook recipe that declares multiple resources with more variation When I check the cookbook Then the service resource warning 005 should not be displayed Scenario: Non-varying packages mixed with other resources Given a cookbook recipe that declares multiple package resources mixed with other resources When I check the cookbook Then the service resource warning 005 should be displayed Scenario: Non-contiguous packages mixed with other resources Given a cookbook recipe that declares non contiguous package resources mixed with other resources When I check the cookbook Then the service resource warning 005 should not be displayed Scenario: Execute resources branching Given a cookbook recipe that declares execute resources varying only in the command in branching conditionals When I check the cookbook Then the service resource warning 005 should not be visible Scenario: Execute resources branching - too many Given a cookbook recipe that declares too many execute resources varying only in the command in branching conditionals When I check the cookbook Then the service resource warning 005 should be visible Scenario: Execute resources branching in provider actions Given a cookbook provider that declares execute resources varying only in the command in separate actions When I check the cookbook Then the service resource warning 005 should not be shown Scenario: Execute resources in the same provider action Given a cookbook provider that declares execute resources varying only in the command in the same action When I check the cookbook Then the service resource warning 005 should be shown Scenario Outline: Template resources within a block Given a cookbook recipe that declares multiple template resources within a block When I check the cookbook Then the service resource warning 005 should against the first resource in the block Examples: | type | show | | varying | not be displayed | | non-varying | be displayed | Scenario: Directories with different file modes Given a cookbook recipe that declares multiple directories with different file modes When I check the cookbook Then the service resource warning 005 should not be displayed foodcritic-8.1.0/features/016_check_for_no_lwrp_default_action.feature0000644000004100000410000000164313005226016026201 0ustar www-datawww-dataFeature: Check for no LWRP default action In order to avoid wondering why a LWRP is not taking action As a developer I want to identify when a LWRP does not declare a default action Scenario: LWRP with no default action Given a cookbook that contains a LWRP with no default action When I check the cookbook Then the LWRP has no default action warning 016 should be displayed against the resource file Scenario: LWRP with a default action Given a cookbook that contains a LWRP with a default action When I check the cookbook Then the LWRP has no default action warning 016 should not be displayed against the resource file Scenario: LWRP with a default action (pre-DSL) Given a cookbook that contains a LWRP with a default action defined via a constructor When I check the cookbook Then the LWRP has no default action warning 016 should not be displayed against the resource file foodcritic-8.1.0/features/021_check_for_dodgy_lwrp_conditions.feature0000644000004100000410000000407113005226016026055 0ustar www-datawww-dataFeature: Check for dodgy provider conditions In order to ensure that resources are declared as intended within a resource provider As a developer I want to identify resource conditions that will be checked only for the first resource Scenario: Provider with no condition Given a cookbook that contains a LWRP that declares a resource with no condition When I check the cookbook Then the dodgy resource condition warning 021 should not be displayed against the provider file Scenario Outline: Provider conditions Given a cookbook that contains a LWRP that declares a resource called with the condition When I check the cookbook Then the dodgy resource condition warning 021 be displayed against the provider file Examples: | name | condition | show_warning | | "create_site" | not_if { ::File.exists?("/tmp/fixed-path")} | should not | | "create_site" | not_if { ::File.exists?("/tmp/#{new_resource.name}")} | should | | "create_site_#{new_resource.name}" | not_if { ::File.exists?("/tmp/#{new_resource.name}")} | should not | | "create_site" | only_if { ::File.exists?("/tmp/#{new_resource.name}")} | should | | "create_site_#{new_resource.name}" | only_if { ::File.exists?("/tmp/#{new_resource.name}")} | should not | | "create_site" | only_if "[ ! -f \"/tmp/#{new_resource.name}\" ]" | should | | "create_site" | not_if "[ -f \"/tmp/#{new_resource.name}\" ]" | should | | "create_site_#{new_resource.name}" | not_if "[ -f \"/tmp/#{new_resource.name}\" ]" | should not | | "create_site" | only_if do ::File.exists?("/tmp/#{new_resource.name}") end | should | | "create_site_#{new_resource.name}" | only_if do ::File.exists?("/tmp/#{new_resource.name}") end | should not | foodcritic-8.1.0/spec/0000755000004100000410000000000013005226016014622 5ustar www-datawww-datafoodcritic-8.1.0/spec/foodcritic/0000755000004100000410000000000013005226016016747 5ustar www-datawww-datafoodcritic-8.1.0/spec/foodcritic/domain_spec.rb0000644000004100000410000000440113005226016021554 0ustar www-datawww-datarequire_relative "../spec_helper" describe FoodCritic::Review do it "is instantiable with no warnings" do FoodCritic::Review.new("example", []) end describe "#cookbook_paths" do it "returns the cookbook paths provided" do FoodCritic::Review.new(["example"], []).cookbook_paths.must_equal ["example"] end it "returns the cookbook paths provided when there are multiple" do FoodCritic::Review.new(%w{example example2}, []).cookbook_paths.must_equal %w{example example2} end end describe "#warnings" do it "returns empty when there are no warnings" do FoodCritic::Review.new("example", []).warnings.must_be_empty end it "makes the warnings available" do warning = "Danger Will Robinson" FoodCritic::Review.new("example", [warning]).warnings.must_equal [warning] end end end describe FoodCritic::RuleList do it "is instantiable with no warnings" do FoodCritic::RuleList.new([]) end let(:rule) { FoodCritic::Rule.new("FCTEST001", "Test rule") } describe "#rules" do it "is empty when instantiated with an empty rule list" do assert FoodCritic::RuleList.new([]).rules.empty? end it "contains the given rule" do assert FoodCritic::RuleList.new([rule]).rules.include?(rule) end end end describe FoodCritic::Rule do let(:rule) { FoodCritic::Rule.new("FCTEST001", "Test rule") } describe "#matches_tags?" do it "matches the rule's code" do rule.matches_tags?(["FCTEST001"]).must_equal true end it "doesn't match an unrelated code" do rule.matches_tags?(["FCTEST999"]).must_equal false end end describe "#tags" do it "returns any + the rule's code" do rule.tags.must_equal %w{any FCTEST001} end end end describe FoodCritic::Warning do let(:rule) { FoodCritic::Rule.new("FCTEST001", "Test rule") } let(:match_opts) { { :filename => "foo/recipes.default.rb", :line => 5, :column => 40 } } describe "failure indication" do it "is false if no fail_tags match" do FoodCritic::Warning.new(rule, match_opts, { :fail_tags => [] }).failed?.must_equal false end it "is true if fail_tags do match" do FoodCritic::Warning.new(rule, match_opts, { :fail_tags => ["any"] }).failed?.must_equal true end end end foodcritic-8.1.0/spec/foodcritic/chef_spec.rb0000644000004100000410000000404013005226016021211 0ustar www-datawww-datarequire_relative "../spec_helper" describe FoodCritic::Chef do let(:api) { Object.new.extend(FoodCritic::Api) } describe "#chef_dsl_methods" do it "returns an enumerable" do api.chef_dsl_methods.each { |m| m } end it "does not return an empty" do api.chef_dsl_methods.wont_be_empty end it "returns dsl methods as symbols" do assert api.chef_dsl_methods.all? { |m| m == m.to_sym } end end describe "#resource_attribute?" do it "raises if the resource_type is nil" do lambda { api.resource_attribute?(nil, :name) }.must_raise(ArgumentError) end it "raises if the resource_type is empty" do lambda { api.resource_attribute?("", :name) }.must_raise(ArgumentError) end it "raises if the attribute_name is nil" do lambda { api.resource_attribute?(:file, nil) }.must_raise(ArgumentError) end it "raises if the attribute_name is empty" do lambda { api.resource_attribute?(:file, "") }.must_raise(ArgumentError) end it "returns true if the resource attribute is known" do assert api.resource_attribute?(:file, :name) end it "returns false if the resource attribute is not known" do refute api.resource_attribute?(:file, :size) end it "returns true for unrecognised resources" do assert api.resource_attribute?(:cluster_file, :size) end it "allows the resource type to be passed as a string" do refute api.resource_attribute?("file", :size) end it "allows the attribute_name to be passed as a string" do assert api.resource_attribute?(:file, "mode") end end describe "#valid_query?" do it "raises if the query is nil" do lambda { api.valid_query?(nil) }.must_raise(ArgumentError) end it "raises if the query is empty" do lambda { api.valid_query?("") }.must_raise(ArgumentError) end it "coerces the provided object to a string" do query = Class.new do def to_s "*:*" end end.new assert api.valid_query?(query) end end end foodcritic-8.1.0/spec/foodcritic/command_line_spec.rb0000644000004100000410000000463513005226016022743 0ustar www-datawww-datarequire_relative "../spec_helper" describe FoodCritic::CommandLine do it "is instantiable" do FoodCritic::CommandLine.new([]).wont_be_nil end describe "#cookbook_paths" do it "returns an empty array if no paths are specified" do FoodCritic::CommandLine.new([]).cookbook_paths.must_be_empty end it "returns a single item array for a specified directory" do FoodCritic::CommandLine.new(["example"]).cookbook_paths.must_equal ["example"] end it "returns multiple items for multiple specified directories" do FoodCritic::CommandLine.new(%w{example another_example}).cookbook_paths.must_equal %w{example another_example} end it "ignores known arguments" do FoodCritic::CommandLine.new(["example", "--context"]).cookbook_paths.must_equal ["example"] end end describe "#role_paths" do it "returns an empty if no role paths are specified" do FoodCritic::CommandLine.new([]).role_paths.must_be_empty end it "returns the provided role path" do FoodCritic::CommandLine.new(["-R", "roles"]).role_paths.must_equal(%w{roles}) end it "returns the provided role paths when there are multiple" do FoodCritic::CommandLine.new(["-R", "roles1", "-R", "roles2"]).role_paths.must_equal(%w{roles1 roles2}) end end describe "#valid_paths?" do it "returns false if no paths are specified" do refute FoodCritic::CommandLine.new([]).valid_paths? end it "returns true if the specified directory exists" do assert FoodCritic::CommandLine.new(["lib"]).valid_paths? end it "returns false if the specified directory does not exist" do refute FoodCritic::CommandLine.new(["lib2"]).valid_paths? end it "returns true if the specified file exists" do assert FoodCritic::CommandLine.new(["lib/foodcritic.rb"]).valid_paths? end it "returns true if both specified paths exist" do assert FoodCritic::CommandLine.new(["lib", "lib/foodcritic.rb"]).valid_paths? end it "returns false if any on the specified paths do not exist" do refute FoodCritic::CommandLine.new(%w{lib lib2}).valid_paths? end end describe "#list_rules?" do it "returns false if ---list is not specified" do refute FoodCritic::CommandLine.new([]).list_rules? end it "returns true if --list is specified" do assert FoodCritic::CommandLine.new(["--list"]).list_rules? end end end foodcritic-8.1.0/spec/foodcritic/api_spec.rb0000644000004100000410000020075713005226016021072 0ustar www-datawww-datarequire_relative "../spec_helper" describe FoodCritic::Api do def parse_ast(str) api.send(:build_xml, Ripper::SexpBuilder.new(str).parse) end let(:api) { Object.new.extend(FoodCritic::Api) } describe :exposed_api do let(:ignorable_methods) do api.class.ancestors.map { |a| a.public_methods }.flatten.sort.uniq end it "exposes the expected api to rule authors" do (api.public_methods.sort - ignorable_methods).must_equal([ :attribute_access, :checks_for_chef_solo?, :chef_dsl_methods, :chef_node_methods, :chef_solo_search_supported?, :cookbook_maintainer, :cookbook_maintainer_email, :cookbook_name, :declared_dependencies, :field, :field_value, :file_match, :find_resources, :gem_version, :included_recipes, :literal_searches, :match, :metadata_field, :notifications, :read_ast, :resource_action?, :resource_attribute, :resource_attribute?, :resource_attributes, :resource_attributes_by_type, :resource_name, :resource_type, :resources_by_type, :ruby_code?, :searches, :standard_cookbook_subdirs, :supported_platforms, :template_file, :template_paths, :templates_included, :valid_query?, ]) end end describe "#attribute_access" do let(:ast) { MiniTest::Mock.new } it "returns empty if the provided ast does not support XPath" do api.attribute_access(nil, :type => :vivified).must_be_empty end it "returns empty if the provided ast has no matches" do ast.expect :xpath, [], [String] [:vivified, :string, :symbol].each do |access_type| api.attribute_access([], :type => :vivified).must_be_empty end end it "raises if the specified node type is not recognised" do ast.expect :xpath, [], [String] lambda do api.attribute_access(ast, :type => :cymbals) end.must_raise(ArgumentError) end it "does not raise if the specified node type is valid" do ast.expect :xpath, [], [/field/, FoodCritic::Api::AttFilter] ast.expect :xpath, [], [/symbol/, FoodCritic::Api::AttFilter] ast.expect :xpath, [], [/tstring_content/, FoodCritic::Api::AttFilter] [:vivified, :symbol, :string].each do |access_type| api.attribute_access(ast, :type => access_type) end end it "returns vivified attributes access" do call = MiniTest::Mock.new call.expect :xpath, [], [/args_add_block/] call.expect :xpath, %w{node bar}, [/ident/] call.expect :xpath, ["foo"], [/@value/] ast.expect :xpath, [call], [String, FoodCritic::Api::AttFilter] api.attribute_access(ast, :type => :vivified).must_equal([call]) ast.verify call.verify end it "doesn't flag searching for a node by name as symbol access" do ast = parse_ast(%q{baz = search(:node, "name:#{node['foo']['bar']}")[0]}) api.attribute_access(ast, :type => :symbol).must_be_empty end describe :ignoring_attributes do it "doesn't ignore run_state by default for backwards compatibility" do ast = parse_ast("node.run_state['bar'] = 'baz'") api.attribute_access(ast).wont_be_empty end it "allows run_state to be ignored" do ast = parse_ast("node.run_state['bar'] = 'baz'") api.attribute_access(ast, :ignore => ["run_state"]).must_be_empty end it "allows run_state to be ignored (symbols access)" do ast = parse_ast("node.run_state[:bar] = 'baz'") api.attribute_access(ast, :ignore => ["run_state"]).must_be_empty end it "allows any attribute to be ignored" do ast = parse_ast("node['bar'] = 'baz'") api.attribute_access(ast, :ignore => ["bar"]).must_be_empty end it "allows any attribute to be ignored (symbols access)" do ast = parse_ast("node[:bar] = 'baz'") api.attribute_access(ast, :ignore => ["bar"]).must_be_empty end it "allows any attribute to be ignored (dot access)" do ast = parse_ast("node.bar = 'baz'") api.attribute_access(ast, :ignore => ["bar"]).must_be_empty end it "includes the children of attributes" do ast = parse_ast("node['foo']['bar'] = 'baz'") api.attribute_access(ast).map { |a| a["value"] }.must_equal(%w{foo bar}) end it "does not include children of removed attributes" do ast = parse_ast("node['foo']['bar'] = 'baz'") api.attribute_access(ast, :ignore => ["foo"]).must_be_empty end it "coerces ignore values to enumerate them" do ast = parse_ast("node.run_state['bar'] = 'baz'") api.attribute_access(ast, :ignore => "run_state").must_be_empty end it "can ignore multiple attributes" do ast = parse_ast(%q{ node['bar'] = 'baz' node.foo = 'baz' }) api.attribute_access(ast, :ignore => %w{foo bar}).must_be_empty end end end describe "#checks_for_chef_solo?" do let(:ast) { MiniTest::Mock.new } it "raises if the provided ast does not support XPath" do lambda { api.checks_for_chef_solo?(nil) }.must_raise(ArgumentError) end it "returns false if there is no reference to chef solo" do ast.expect :xpath, [], [String] ast.expect :xpath, [], [String] refute api.checks_for_chef_solo?(ast) end it "returns true if there is one reference to chef solo" do ast.expect :xpath, ["aref"], [String] assert api.checks_for_chef_solo?(ast) end it "returns true if there are multiple references to chef solo" do ast.expect :xpath, %w{aref aref}, [String] assert api.checks_for_chef_solo?(ast) end end describe "#chef_solo_search_supported?" do it "returns false if the recipe path is nil" do refute api.chef_solo_search_supported?(nil) end it "returns false if the recipe path does not exist" do refute api.chef_solo_search_supported?("/tmp/non-existent-path") end end describe "#cookbook_name" do def mock_cookbook_metadata(f) dir = File.dirname(f) unless File.directory?(dir) FileUtils.mkdir_p(dir) end File.open(f, "w") { |file| file.write('name "YOUR_COOKBOOK_NAME"') } end metadata_path = "/tmp/fc/mock/cb/metadata.rb" it "raises if passed a nil" do lambda { api.cookbook_name(nil) }.must_raise ArgumentError end it "raises if passed an empty string" do lambda { api.cookbook_name("") }.must_raise ArgumentError end it "returns the cookbook name when passed a recipe" do recipe_path = "cookbooks/apache2/recipes/default.rb" api.cookbook_name(recipe_path).must_equal "apache2" end it "returns the cookbook name when passed the cookbook metadata" do api.cookbook_name("cookbooks/apache2/metadata.rb").must_equal "apache2" end it "returns the cookbook name when passed a template" do erb_path = "cookbooks/apache2/templates/default/a2ensite.erb" api.cookbook_name(erb_path).must_equal "apache2" end it "returns the cookbook name when passed the cookbook metadata with a name field" do mock_cookbook_metadata(metadata_path) api.cookbook_name(metadata_path).must_equal "YOUR_COOKBOOK_NAME" end end describe "#cookbook_maintainer" do def mock_cookbook_metadata(f) dir = File.dirname(f) unless File.directory?(dir) FileUtils.mkdir_p(dir) end File.open(f, "w") { |file| file.write('maintainer "YOUR_COMPANY_NAME"') } end metadata_path = "/tmp/fc/mock/cb/metadata.rb" it "raises if passed a nil" do lambda { api.cookbook_maintainer(nil) }.must_raise ArgumentError end it "raises if passed an empty string" do lambda { api.cookbook_maintainer("") }.must_raise ArgumentError end it "raises if the path does not exist" do lambda { api.cookbook_maintainer("/tmp/non-existent-path") }.must_raise RuntimeError end it "returns the cookbook maintainer when passed the cookbook metadata" do mock_cookbook_metadata(metadata_path) api.cookbook_maintainer(metadata_path).must_equal "YOUR_COMPANY_NAME" end it "returns the cookbook maintainer when passed a recipe" do mock_cookbook_metadata(metadata_path) api.cookbook_maintainer("/tmp/fc/mock/cb/recipes/default.rb").must_equal "YOUR_COMPANY_NAME" end it "returns the cookbook maintainer when passed a template" do mock_cookbook_metadata(metadata_path) api.cookbook_maintainer("/tmp/fc/mock/cb/templates/default/mock.erb").must_equal "YOUR_COMPANY_NAME" end end describe "#cookbook_maintainer_email" do def mock_cookbook_metadata(f) dir = File.dirname(f) unless File.directory?(dir) FileUtils.mkdir_p(dir) end File.open(f, "w") { |file| file.write('maintainer_email "YOUR_EMAIL"') } end metadata_path = "/tmp/fc/mock/cb/metadata.rb" it "raises if passed a nil" do lambda { api.cookbook_maintainer_email(nil) }.must_raise ArgumentError end it "raises if passed an empty string" do lambda { api.cookbook_maintainer_email("") }.must_raise ArgumentError end it "raises if the path does not exist" do lambda { api.cookbook_maintainer_email("/tmp/non-existent-path") }.must_raise RuntimeError end it "returns the cookbook maintainer_email when passed the cookbook metadata" do mock_cookbook_metadata(metadata_path) api.cookbook_maintainer_email(metadata_path).must_equal "YOUR_EMAIL" end it "returns the cookbook maintainer_email when passed a recipe" do mock_cookbook_metadata(metadata_path) api.cookbook_maintainer_email("/tmp/fc/mock/cb/recipes/default.rb").must_equal "YOUR_EMAIL" end it "returns the cookbook maintainer_email when passed a template" do mock_cookbook_metadata(metadata_path) api.cookbook_maintainer_email("/tmp/fc/mock/cb/templates/default/mock.erb").must_equal "YOUR_EMAIL" end end describe "#declared_dependencies" do it "raises if the ast does not support XPath" do lambda { api.declared_dependencies(nil) }.must_raise ArgumentError end it "returns an empty if there are no declared dependencies" do ast = MiniTest::Mock.new 3.times do ast.expect :xpath, [], [String] end api.declared_dependencies(ast).must_be_empty end it "includes only cookbook names in the returned array" do ast = Nokogiri::XML(%q{ }) api.declared_dependencies(ast).must_equal ["mysql"] end end describe "#field" do describe :simple_ast do let(:ast) { parse_ast('name "webserver"') } it "raises if the field name is nil" do lambda { api.field(ast, nil) }.must_raise ArgumentError end it "raises if the field name is empty" do lambda { api.field(ast, "") }.must_raise ArgumentError end it "returns empty if the field is not present" do api.field(ast, :common_name).must_be_empty end it "accepts a string for the field name" do api.field(ast, "name").wont_be_empty end it "accepts a symbol for the field name" do api.field(ast, :name).wont_be_empty end end it "returns fields when the value is an embedded string expression" do ast = parse_ast(%q{ name "#{foo}_#{bar}" }.strip) api.field(ast, :name).size.must_equal 1 end it "returns fields when the value is a method call" do ast = parse_ast(%q{ name generate_name }.strip) api.field(ast, :name).size.must_equal 1 end it "returns both fields if the field is specified twice" do ast = parse_ast(%q{ name "webserver" name "database" }.strip) api.field(ast, :name).size.must_equal 2 end end describe "#field_value" do describe :simple_ast do let(:ast) { parse_ast('name "webserver"') } it "raises if the field name is nil" do lambda { api.field_value(ast, nil) }.must_raise ArgumentError end it "raises if the field name is empty" do lambda { api.field_value(ast, "") }.must_raise ArgumentError end it "is falsy if the field is not present" do refute api.field_value(ast, :common_name) end it "accepts a string for the field name" do api.field_value(ast, "name").must_equal "webserver" end it "accepts a symbol for the field name" do api.field_value(ast, :name).must_equal "webserver" end end it "is falsy when the value is an embedded string expression" do ast = parse_ast(%q{ name "#{foo}_#{bar}" }.strip) refute api.field_value(ast, :name) end it "is falsy when the value is a method call" do ast = parse_ast(%q{ name generate_name('foo') }.strip) refute api.field_value(ast, :name) end it "returns the last value if the field is specified twice" do ast = parse_ast(%q{ name "webserver" name "database" }.strip) api.field_value(ast, :name).must_equal "database" end end describe "#file_match" do it "includes the provided filename in the match" do api.file_match("foo.rb")[:filename].must_equal "foo.rb" end it "retains the full provided filename path in the match" do api.file_match("foo/bar/foo.rb")[:filename].must_equal "foo/bar/foo.rb" end it "raises an error if the provided filename is nil" do lambda { api.file_match(nil) }.must_raise(ArgumentError) end it "sets the line and column to the beginning of the file" do match = api.file_match("bar.rb") match[:line].must_equal 1 match[:column].must_equal 1 end end describe "#find_resources" do let(:ast) { MiniTest::Mock.new } it "returns empty unless the ast supports XPath" do api.find_resources(nil).must_be_empty end it "restricts by resource type when provided" do ast.expect :xpath, ["method_add_block"], ["//method_add_block[command/ident[@value='file']]" + "[command/ident/@value != 'action']"] api.find_resources(ast, :type => "file") ast.verify end it "does not restrict by resource type when not provided" do ast.expect :xpath, ["method_add_block"], ["//method_add_block[command/ident]" + "[command/ident/@value != 'action']"] api.find_resources(ast) ast.verify end it "allows resource type to be specified as :any" do ast.expect :xpath, ["method_add_block"], ["//method_add_block[command/ident]" + "[command/ident/@value != 'action']"] api.find_resources(ast, :type => :any) ast.verify end it "returns any matches" do ast.expect :xpath, ["method_add_block"], [String] api.find_resources(ast).must_equal ["method_add_block"] end end describe "#included_recipes" do it "raises if the ast does not support XPath" do lambda { api.included_recipes(nil) }.must_raise ArgumentError end it "returns an empty hash if there are no included recipes" do ast = MiniTest::Mock.new.expect :xpath, [], [String] api.included_recipes(ast).keys.must_be_empty end it "returns a hash keyed by recipe name" do ast = MiniTest::Mock.new.expect :xpath, [{ "value" => "foo::bar" }], [String] api.included_recipes(ast).keys.must_equal ["foo::bar"] end it "returns a hash where the values are the matching nodes" do ast = MiniTest::Mock.new.expect :xpath, [{ "value" => "foo::bar" }], [String] api.included_recipes(ast).values.must_equal [[{ "value" => "foo::bar" }]] end it "correctly keys an included recipe specified as a string literal" do api.included_recipes(parse_ast(%q{ include_recipe "foo::default" })).keys.must_equal ["foo::default"] end describe "embedded expression - recipe name" do let(:ast) do parse_ast(%q{ include_recipe "foo::#{bar}" }) end it "returns the literal string component by default" do api.included_recipes(ast).keys.must_equal ["foo::"] end it "returns the literal string part of the AST" do api.included_recipes(ast)["foo::"].first.must_respond_to(:xpath) end it "returns empty if asked to exclude statements with embedded expressions" do api.included_recipes(ast, :with_partial_names => false).must_be_empty end it "returns the literals if asked to include statements with embedded expressions" do api.included_recipes(ast, :with_partial_names => true).keys.must_equal ["foo::"] end end describe "embedded expression - cookbook name" do let(:ast) do parse_ast(%q{ include_recipe "#{foo}::bar" }) end it "returns the literal string component by default" do api.included_recipes(ast).keys.must_equal ["::bar"] end it "returns the literal string part of the AST" do api.included_recipes(ast)["::bar"].first.must_respond_to(:xpath) end it "returns empty if asked to exclude statements with embedded expressions" do api.included_recipes(ast, :with_partial_names => false).must_be_empty end end describe "embedded expression - partial cookbook name" do let(:ast) do parse_ast(%q{ include_recipe "#{foo}_foo::bar" }) end it "returns the literal string component by default" do api.included_recipes(ast).keys.must_equal ["_foo::bar"] end it "returns the literal string part of the AST" do api.included_recipes(ast)["_foo::bar"].first.must_respond_to(:xpath) end it "returns empty if asked to exclude statements with embedded expressions" do api.included_recipes(ast, :with_partial_names => false).must_be_empty end end end describe :AttFilter do describe "#is_att_type" do let(:filter) { FoodCritic::Api::AttFilter.new } it "returns empty if the argument is not enumerable" do filter.is_att_type(nil).must_be_empty end it "filters out values that are not Chef node attribute types" do nodes = %w{node node badger default override ostrich set normal} filter.is_att_type(nodes).uniq.size.must_equal 5 end it "returns all filtered nodes" do nodes = %w{node node override default normal set set override} filter.is_att_type(nodes).must_equal nodes end it "returns empty if there are no Chef node attribute types" do nodes = %w{squirrel badger pooh tigger} filter.is_att_type(nodes).must_be_empty end end end describe "#literal_searches" do let(:ast) { MiniTest::Mock.new } it "returns empty if the AST does not support XPath expressions" do api.literal_searches(nil).must_be_empty end it "returns empty if the AST has no elements" do ast.expect :xpath, [], [String] api.literal_searches(ast).must_be_empty end it "returns the AST elements for each literal search" do ast.expect :xpath, ["tstring_content"], [String] api.literal_searches(ast).must_equal ["tstring_content"] end end describe "#match" do it "raises if the provided node is nil" do lambda { api.match(nil) }.must_raise(ArgumentError) end it "raises if the provided node does not support XPath" do lambda { api.match(Object.new) }.must_raise(ArgumentError) end it "returns nil if there is no nested position node" do node = MiniTest::Mock.new node.expect :xpath, [], ["descendant::pos"] api.match(node).must_be_nil end it "uses the position of the first position node if there are multiple" do node = MiniTest::Mock.new node.expect(:xpath, [{ "name" => "pos", "line" => "1", "column" => "10" }, { "name" => "pos", "line" => "3", "column" => "16" }], ["descendant::pos"]) match = api.match(node) match[:line].must_equal(1) match[:column].must_equal(10) end describe :matched_node_name do let(:node) do node = MiniTest::Mock.new node.expect :xpath, [{ "name" => "pos", "line" => "1", "column" => "10" }], ["descendant::pos"] node end it "includes the name of the node in the match" do node.expect :name, "command" api.match(node).must_equal({ :matched => "command", :line => 1, :column => 10 }) end it "sets the matched name to empty if the element does not have a name" do api.match(node).must_equal({ :matched => "", :line => 1, :column => 10 }) end end end describe "#notifications" do it "returns empty if the provided AST does not support XPath" do api.notifications(nil).must_be_empty end it "returns empty if there are no notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" end })).must_be_empty end describe "malformed syntax" do it "returns empty if no notifies value is provided" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies end })).must_be_empty end it "returns empty if no subscribes value is provided" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes end })).must_be_empty end it "returns empty if only the notifies action is provided" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart end })).must_be_empty end it "returns empty if only the subscribes action is provided" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart end })).must_be_empty end describe "returns empty if the service name is missing" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(:service) end })).must_be_empty end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes:restart, resources(:service) end })).must_be_empty end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "service" end })).must_be_empty end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes:restart, "service" end })).must_be_empty end end describe "returns empty if the resource type is missing" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources("nscd") end })).must_be_empty end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, resources("nscd") end })).must_be_empty end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "nscd" end })).must_be_empty end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "nscd" end })).must_be_empty end end describe "returns empty if the resource name is missing" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(:service) end })).must_be_empty end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, resources(:service) end })).must_be_empty end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "service[]" end })).must_be_empty end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "service[]" end })).must_be_empty end end it "returns empty if the left square bracket is missing" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "servicefoo]" end })).must_be_empty end it "returns empty if the right square bracket is missing" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "service[foo" end })).must_be_empty end end it "understands the old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(:service => "nscd") end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old, }] ) end it "understands old-style notifications with :'symbol' literals as action" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :'soft-restart', resources(:service => "nscd") end })).must_equal( [{ :type => :notifies, :action => :'soft-restart', :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old, }] ) end it "understands old-style notifications with added parentheses" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies(:restart, resources(:service => "nscd")) end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old, }] ) end it "understands old-style notifications with ruby 1.9 hash syntax" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(service: "nscd") end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old, }] ) end it "understands the old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, resources(:service => "nscd") end })).must_equal( [{ :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old, }] ) end it "understands old-style subscriptions with added parentheses" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes(:restart, resources(:service => "nscd")) end })).must_equal( [{ :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old, }] ) end it "understands the new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "service[nscd]" end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :new, }] ) end it "understands new-style notifications with :'symbol' literals as action" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :'soft-restart', "service[nscd]" end })).must_equal( [{ :type => :notifies, :action => :'soft-restart', :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :new, }] ) end it "understands new-style notifications with added parentheses" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies(:restart, "service[nscd]") end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :new, }] ) end it "understands the new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "service[nscd]" end })).must_equal( [{ :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :new, }] ) end it "understands new-style subscriptions with added parentheses" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes(:restart, "service[nscd]") end })).must_equal( [{ :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :new, }] ) end describe "supports a resource both notifying and subscribing" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(:service => "nscd") subscribes :create, resources(:template => "/etc/nscd.conf") end })).must_equal([ { :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old, }, { :type => :subscribes, :action => :create, :resource_type => :template, :resource_name => "/etc/nscd.conf", :timing => :delayed, :style => :old, }, ]) end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "service[nscd]" subscribes :create, "template[/etc/nscd.conf]" end })).must_equal([ { :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :new, }, { :type => :subscribes, :action => :create, :resource_type => :template, :resource_name => "/etc/nscd.conf", :timing => :delayed, :style => :new, }, ]) end end it "understands the old-style notifications with timing" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(:service => "nscd"), :immediately end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :immediate, :style => :old, }] ) end it "understands the old-style subscriptions with timing" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, resources(:service => "nscd"), :immediately end })).must_equal( [{ :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :immediate, :style => :old, }] ) end it "understands the new-style notifications with timing" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "service[nscd]", :immediately end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :immediate, :style => :new, }] ) end it "understands the new-style subscriptions with timing" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "service[nscd]", :immediately end })).must_equal( [{ :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :immediate, :style => :new, }] ) end describe "can be passed an individual resource" do it "old-style notifications" do api.notifications(api.find_resources(parse_ast(%q{ service "nscd" do action :start end template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(:service => "nscd") end }), :type => :template).first).must_equal([ { :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old }, ]) end it "old-style subscriptions" do api.notifications(api.find_resources(parse_ast(%q{ service "nscd" do action :start end template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, resources(:service => "nscd") end }), :type => :template).first).must_equal([ { :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old }, ]) end it "new-style notifications" do api.notifications(api.find_resources(parse_ast(%q{ service "nscd" do action :start end template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "service[nscd]" end }), :type => :template).first).must_equal([ { :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :new }, ]) end it "new-style subscriptions" do api.notifications(api.find_resources(parse_ast(%q{ service "nscd" do action :start end template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "service[nscd]" end }), :type => :template).first).must_equal([ { :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :new }, ]) end end describe "supports multiple notifications on a single resource" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :stop, resources(:service => "nscd") notifies :start, resources(:service => "nscd") end })).must_equal( [ { :type => :notifies, :action => :stop, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old }, { :type => :notifies, :action => :start, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old }, ] ) end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :stop, resources(:service => "nscd") subscribes :start, resources(:service => "nscd") end })).must_equal( [ { :type => :subscribes, :action => :stop, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old }, { :type => :subscribes, :action => :start, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :old }, ] ) end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :stop, "service[nscd]" notifies :start, "service[nscd]" end })).must_equal( [ { :type => :notifies, :action => :stop, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :new }, { :type => :notifies, :action => :start, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :new }, ] ) end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :stop, "service[nscd]" subscribes :start, "service[nscd]" end })).must_equal( [ { :type => :subscribes, :action => :stop, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :new }, { :type => :subscribes, :action => :start, :resource_type => :service, :resource_name => "nscd", :timing => :delayed, :style => :new }, ] ) end end describe "understands notifications for an execute resource" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/tmp/foo.bar" do source "foo.bar.erb" notifies :run, resources(:execute => "foo") end })).must_equal( [{ :type => :notifies, :action => :run, :resource_type => :execute, :resource_name => "foo", :timing => :delayed, :style => :old }] ) end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/tmp/foo.bar" do source "foo.bar.erb" subscribes :run, resources(:execute => "foo") end })).must_equal( [{ :type => :subscribes, :action => :run, :resource_type => :execute, :resource_name => "foo", :timing => :delayed, :style => :old }] ) end it "old-style notifications" do api.notifications(parse_ast(%q{ template "/tmp/foo.bar" do source "foo.bar.erb" notifies :run, "execute[foo]" end })).must_equal( [{ :type => :notifies, :action => :run, :resource_type => :execute, :resource_name => "foo", :timing => :delayed, :style => :new }] ) end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/tmp/foo.bar" do source "foo.bar.erb" subscribes :run, "execute[foo]" end })).must_equal( [{ :type => :subscribes, :action => :run, :resource_type => :execute, :resource_name => "foo", :timing => :delayed, :style => :new }] ) end end describe "sets the notification timing to delayed if specified" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, resources(execute => "robespierre"), :delayed end })).first[:timing].must_equal(:delayed) end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do subscribes :run, resources(execute => "robespierre"), :delayed end })).first[:timing].must_equal(:delayed) end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, "execute[robespierre]", :delayed end })).first[:timing].must_equal(:delayed) end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do subscribes :run, "execute[robespierre]", :delayed end })).first[:timing].must_equal(:delayed) end end describe "sets the notification timing to immediate if specified as immediate" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, resources(execute => "robespierre"), :immediate end })).first[:timing].must_equal(:immediate) end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do subscribes :run, resources(execute => "robespierre"), :immediate end })).first[:timing].must_equal(:immediate) end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, "execute[robespierre]", :immediate end })).first[:timing].must_equal(:immediate) end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do subscribes :run, "execute[robespierre]", :immediate end })).first[:timing].must_equal(:immediate) end end describe "sets the notification timing to immediate if specified as immediately" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, resources(execute => "robespierre"), :immediately end })).first[:timing].must_equal(:immediate) end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do subscribes :run, resources(execute => "robespierre"), :immediately end })).first[:timing].must_equal(:immediate) end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, "execute[robespierre]", :immediately end })).first[:timing].must_equal(:immediate) end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do subscribes :run, "execute[robespierre]", :immediately end })).first[:timing].must_equal(:immediate) end end it "passes unrecognised notification timings through unchanged" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, resources(execute => "robespierre"), :forthwith end })).first[:timing].must_equal(:forthwith) end describe "resource names as expressions" do describe "returns the AST for an embedded string" do it "old-style notifications" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :create, resources(:template => "/etc/bar/#{resource}.bar") end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with string expression to respond to #xpath" end it "new-style notifications" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :create, "template[/etc/bar/#{resource}.bar]" end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with string expression to respond to #xpath" end it "new-style notifications - complete resource_name" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :create, "template[#{template_path}]" end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with string expression to respond to #xpath" end end describe "returns the AST for node attribute" do it "old-style notifications" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :restart, resources(:service => node['foo']['service']) end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with node attribute to respond to #xpath" end it "new-style notifications" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :restart, "service[#{node['foo']['service']}]" end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with node attribute to respond to #xpath" end end describe "returns the AST for variable reference" do it "old-style notifications" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :restart, resources(:service => my_service) end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with var ref to respond to #xpath" end it "new-style notifications" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :restart, "service[#{my_service}]" end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with var ref to respond to #xpath" end end end describe "mark style of notification" do it "specifies that the notification was in the old style" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :restart, resources(:service => 'foo') end })).first[:style].must_equal :old end it "specifies that the notification was in the new style" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :restart, "service[foo]" end })).first[:style].must_equal :new end end end describe "#read_ast" do it "raises if the file cannot be read" do lambda { api.read_ast(nil) }.must_raise(TypeError) end end describe "#resource_attribute" do let(:resource) do Class.new do def xpath(str) raise "Not expected" end end.new end it "raises if the resource does not support XPath" do lambda { api.resource_attribute(nil, "mode") }.must_raise ArgumentError end it "raises if the attribute name is empty" do lambda { api.resource_attribute(resource, "") }.must_raise ArgumentError end end describe "#resource_attributes" do def str_to_atts(str) api.resource_attributes(api.find_resources(parse_ast(str)).first) end it "raises if the resource does not support XPath" do lambda { api.resource_attributes(nil) }.must_raise ArgumentError end it "returns a string value for a literal string" do atts = str_to_atts(%q{ directory "/foo/bar" do owner "root" end }) atts["owner"].wont_be_nil atts["owner"].must_equal "root" end it "returns a truthy value for a literal true" do atts = str_to_atts(%q{ directory "/foo/bar" do recursive true end }) atts["recursive"].wont_be_nil atts["recursive"].must_equal true end it "returns a truthy value for a literal false" do atts = str_to_atts(%q{ directory "/foo/bar" do recursive false end }) atts["recursive"].wont_be_nil atts["recursive"].must_equal false end it "decodes numeric attributes correctly" do atts = str_to_atts(%q{ directory "/foo/bar" do owner "root" mode 0755 end }) atts["mode"].wont_be_nil atts["mode"].must_equal "0755" end describe "block attributes" do it "includes attributes with brace block values in the result" do atts = str_to_atts(%q{ file "/etc/foo" do mode "0600" action :create only_if { File.exists?("/etc/bar") } end }) atts["only_if"].wont_be_nil atts["only_if"].must_respond_to :xpath atts["only_if"].name.must_equal "brace_block" end it "includes attributes with do block values in the result" do atts = str_to_atts(%q{ file "/etc/foo" do mode "0600" action :create only_if do !File.exists?(foo) || (File.exists?(bar) && File.mtime(baz) < last_changedate) end end }) atts["only_if"].wont_be_nil atts["only_if"].must_respond_to :xpath atts["only_if"].name.must_equal "do_block" end it "supports multiple block attributes" do atts = str_to_atts(%q{ file "/etc/foo" do mode "0600" action :create only_if { false } not_if { true } end }) atts["only_if"].wont_be_nil atts["only_if"].must_respond_to :xpath atts["only_if"].name.must_equal "brace_block" atts["not_if"].wont_be_nil atts["not_if"].must_respond_to :xpath atts["not_if"].name.must_equal "brace_block" end it "doesn't include method calls in ruby blocks" do atts = str_to_atts(%q{ ruby_block "example" do block do foo do |bar| Chef::Log.info(bar) end end only_if { true } not_if { false } end }) atts.keys.wont_include "foo" atts["block"].wont_be_nil atts["block"].must_respond_to :xpath atts["block"].name.must_equal "do_block" atts["only_if"].wont_be_nil atts["only_if"].must_respond_to :xpath atts["only_if"].name.must_equal "brace_block" atts["not_if"].wont_be_nil atts["not_if"].must_respond_to :xpath atts["not_if"].name.must_equal "brace_block" end it "includes notifications in the result" do atts = str_to_atts(%q{ template "/etc/httpd.conf" do notifies :restart, "service[apache]" end }) atts["notifies"].wont_be_nil atts["notifies"].must_respond_to :xpath atts["notifies"].name.must_equal "args_add_block" end it "includes old-style notifications in the result" do atts = str_to_atts(%q{ template "/etc/httpd.conf" do notifies :restart, resources(:service => "apache") end }) atts["notifies"].wont_be_nil atts["notifies"].must_respond_to :xpath atts["notifies"].name.must_equal "args_add_block" end end end describe "#resource_attributes_by_type" do it "raises if the ast does not support XPath" do lambda { api.resource_attributes_by_type(nil) }.must_raise ArgumentError end it "returns an empty hash if there are no resources" do ast = MiniTest::Mock.new.expect :xpath, [], [String] api.resource_attributes_by_type(ast).keys.must_be_empty end end describe "#resource_name" do it "raises if the resource does not support XPath" do lambda { api.resource_name("foo") }.must_raise ArgumentError end it "returns the resource name for a resource" do ast = MiniTest::Mock.new ast.expect :xpath, "bob", [String] api.resource_name(ast).must_equal "bob" end end describe "#resources_by_type" do it "raises if the ast does not support XPath" do lambda { api.resources_by_type(nil) }.must_raise ArgumentError end it "returns an empty hash if there are no resources" do ast = MiniTest::Mock.new.expect :xpath, [], [String] api.resources_by_type(ast).keys.must_be_empty end end describe "#resource_type" do it "raises if the resource does not support XPath" do lambda { api.resource_type(nil) }.must_raise ArgumentError end it "raises if the resource type cannot be determined" do ast = MiniTest::Mock.new ast.expect :xpath, "", [String] lambda { api.resource_type(ast) }.must_raise ArgumentError end it "returns the resource type for a resource" do ast = MiniTest::Mock.new ast.expect :xpath, "directory", [String] api.resource_type(ast).must_equal "directory" end end describe "#ruby_code?" do it "says a nil is not ruby code" do refute api.ruby_code?(nil) end it "says an empty string is not ruby code" do refute api.ruby_code?("") end it "coerces arguments to a string" do assert api.ruby_code?(%w{foo bar}) end it "returns true for a snippet of ruby code" do assert api.ruby_code?("assert api.ruby_code?(nil)") end it "returns false for a unix command" do refute api.ruby_code?("find -type f -print") end end describe "#searches" do let(:ast) { MiniTest::Mock.new } it "returns empty if the AST does not support XPath expressions" do api.searches("not-an-ast").must_be_empty end it "returns empty if the AST has no elements" do ast.expect :xpath, [], [String] api.searches(ast).must_be_empty end it "returns the AST elements for each use of search" do ast.expect :xpath, ["ident"], [String] api.searches(ast).must_equal ["ident"] end end describe "#standard_cookbook_subdirs" do it "is enumerable" do api.standard_cookbook_subdirs.each { |s| s } end it "is sorted in alphabetical order" do api.standard_cookbook_subdirs.must_equal( api.standard_cookbook_subdirs.sort) end it "includes the directories generated by knife create cookbook" do %w{attributes definitions files libraries providers recipes resources templates}.each do |dir| api.standard_cookbook_subdirs.must_include dir end end it "does not include the spec directory" do api.standard_cookbook_subdirs.wont_include "spec" end it "does not include a subdirectory of a subdirectory" do api.standard_cookbook_subdirs.wont_include "default" end end describe "#supported_platforms" do def supports(str) api.supported_platforms(parse_ast(str)) end it "returns an empty if no platforms are specified as supported" do supports("name 'example'").must_be_empty end describe :ignored_support_declarations do it "should ignore supports without any arguments" do supports("supports").must_be_empty end it "should ignore supports where an embedded string expression is used" do supports('supports "red#{hat}"').must_be_empty end end it "returns the supported platform names if multiple are given" do supports(%q{ supports "redhat" supports "scientific" }).must_equal([{ :platform => "redhat", :versions => [] }, { :platform => "scientific", :versions => [] }]) end it "sorts the platform names in alphabetical order" do supports(%q{ supports "scientific" supports "redhat" }).must_equal([{ :platform => "redhat", :versions => [] }, { :platform => "scientific", :versions => [] }]) end it "handles support declarations that include version constraints" do supports(%q{ supports "redhat", '>= 6' }).must_equal([{ :platform => "redhat", :versions => [">= 6"] }]) end it "handles support declarations that include obsoleted version constraints" do supports(%q{ supports 'redhat', '> 5.0', '< 7.0' supports 'scientific', '> 5.0', '< 6.0' }).must_equal([{ :platform => "redhat", :versions => ["> 5.0", "< 7.0"] }, { :platform => "scientific", :versions => ["> 5.0", "< 6.0"] }]) end it "normalises platform symbol references to strings" do supports(%q{ supports :ubuntu }).must_equal([{ :platform => "ubuntu", :versions => [] }]) end it "handles support declarations as symbols that include version constraints" do supports(%q{ supports :redhat, '>= 6' }).must_equal([{ :platform => "redhat", :versions => [">= 6"] }]) end it "understands support declarations that use word lists" do supports(%q{ %w{redhat centos fedora}.each do |os| supports os end }).must_equal([{ :platform => "centos", :versions => [] }, { :platform => "fedora", :versions => [] }, { :platform => "redhat", :versions => [] }]) end end describe "#templates_included" do def all_templates [ "templates/default/main.erb", "templates/default/included_1.erb", "templates/default/included_2.erb", ] end def template_ast(content) parse_ast(FoodCritic::Template::ExpressionExtractor.new.extract( content).map { |e| e[:code] }.join(";")) end it "returns the path of the containing template when there are no partials" do ast = parse_ast("<%= foo.erb %>") api.stub :read_ast, ast do api.templates_included(["foo.erb"], "foo.erb").must_equal ["foo.erb"] end end it "returns the path of the containing template and any partials" do api.instance_variable_set(:@asts, { :main => template_ast('<%= render "included_1.erb" %> <%= render "included_2.erb" %>'), :ok => template_ast("<%= @foo %>"), }) def api.read_ast(path) case path when /main/ then @asts[:main] else @asts[:ok] end end api.templates_included(all_templates, "templates/default/main.erb").must_equal( ["templates/default/main.erb", "templates/default/included_1.erb", "templates/default/included_2.erb"] ) end it "doesn't mistake render options for partial template names" do api.instance_variable_set(:@asts, { :main => template_ast('<%= render "included_1.erb", :variables => {:foo => "included_2.erb"} %>'), :ok => template_ast("<%= @foo %>"), }) def api.read_ast(path) case path when /main/ then @asts[:main] else @asts[:ok] end end api.templates_included(all_templates, "templates/default/main.erb").must_equal( ["templates/default/main.erb", "templates/default/included_1.erb"] ) end it "raises if included partials have cycles" do api.instance_variable_set(:@asts, { :main => template_ast('<%= render "included_1.erb" %> <%= render "included_2.erb" %>'), :loop => template_ast('<%= render "main.erb" %>'), :ok => template_ast("<%= foo %>"), }) def api.read_ast(path) case path when /main/ then @asts[:main] when /included_2/ then @asts[:loop] else @asts[:ok] end end err = lambda do api.templates_included(all_templates, "templates/default/main.erb") end.must_raise(FoodCritic::Api::RecursedTooFarError) err.message.must_equal "templates/default/main.erb" end end end foodcritic-8.1.0/spec/foodcritic/linter_spec.rb0000644000004100000410000000553513005226016021613 0ustar www-datawww-datarequire_relative "../spec_helper" describe FoodCritic::Linter do let(:linter) { FoodCritic::Linter.new } describe "#initialize" do it "is instantiable" do linter.wont_be_nil end end describe "chef version" do it "should be the latest stable version of Chef" do FoodCritic::Linter::DEFAULT_CHEF_VERSION.must_equal "12.4.1" end end describe "#check" do it "requires a cookbook_path, role_path or environment_path to be specified" do lambda { linter.check({}) }.must_raise ArgumentError end [:cookbook, :role, :environment].each do |path_type| key = "#{path_type}_paths".to_sym it "requires a #{path_type}_path by itself not to be nil" do lambda { linter.check(key => nil) }.must_raise ArgumentError end it "requires a #{path_type}_path by itself not to be empty" do lambda { linter.check(key => []) }.must_raise ArgumentError end it "accepts a scalar with a single #{path_type} path" do linter.check(key => ".") end it "accepts an array of #{path_type} paths" do linter.check(key => ["."]) end it "returns a review when a #{path_type} path is provided" do linter.check(key => ["."]).must_respond_to(:warnings) end end end describe "#list_rules" do it "does not require cookbook_path, role_path or environment_path to be specified" do linter.list(:list => true) end it "returns a rule listing" do linter.list(:list => true).must_respond_to(:rules) end end describe "#load_files!" do let(:default_rules_file) do File.expand_path(File.join(File.dirname(__FILE__), "../../lib/foodcritic/rules.rb")) end let(:rule_dsl_load_mock) { MiniTest::Mock.new } it "should add the default rule file" do rule_dsl_load_mock.expect(:call, nil, [[default_rules_file], nil]) verify_loaded end it "should include rules found in gems if the :search_gems option is true" do gem_rules = ["/path/to/rules1.rb", "/path/to/rules2.rb"] expected_rules = [default_rules_file, gem_rules].flatten rule_dsl_load_mock.expect(:call, nil, [expected_rules, nil]) metaclass = class << linter; self; end metaclass.send(:define_method, :rule_files_in_gems) do gem_rules end verify_loaded :search_gems => true end it "should include files found in :include_rules option" do include_rules = ["/path/to/rules1.rb", "/path/to/rules2.rb"] expected_rules = [default_rules_file, include_rules].flatten rule_dsl_load_mock.expect(:call, nil, [expected_rules, nil]) verify_loaded :include_rules => include_rules end def verify_loaded(options = {}) FoodCritic::RuleDsl.stub :load, rule_dsl_load_mock do linter.load_rules! options end rule_dsl_load_mock.verify end end end foodcritic-8.1.0/spec/foodcritic/template_spec.rb0000644000004100000410000000344513005226016022127 0ustar www-datawww-datarequire_relative "../spec_helper" describe FoodCritic::Template::ExpressionExtractor do let(:extractor) { FoodCritic::Template::ExpressionExtractor.new } describe "#expressions" do it "returns empty if the template is empty" do extractor.extract("").must_be_empty end it "returns empty if the template contains no erb at all" do extractor.extract(%q{ Hello World! }).must_be_empty end it "returns erb conditionals" do extractor.extract(%q{ <% if true %> Hello World! <% end %> }).must_equal([{ :type => :statement, :code => "if true", :line => 2 }, { :type => :statement, :code => "end", :line => 4 }]) end it "does not evaluate erb statements" do extractor.extract(%q{ <% raise 'Should not have been evaluated' %> }) end it "extracts an expression from within the template" do extractor.extract(%q{ <%= foo %> }).must_equal([{ :type => :expression, :code => "foo", :line => 2 }]) end it "does not evaluate erb expressions" do extractor.extract(%q{ <%= raise 'Should not have been evaluated' %> }) end it "extracts multiple expressions" do extractor.extract(%q{ " protocol="HTTP/1.1" connectionTimeout="20000" URIEncoding="UTF-8" redirectPort="<%= node["tomcat"]["ssl_port"] %>" /> }).must_equal([ { :type => :expression, :code => 'node["tomcat"]["port"]', :line => 2 }, { :type => :expression, :code => 'node["tomcat"]["ssl_port"]', :line => 5 }, ]) end it "excludes comment-only expressions" do extractor.extract("<%# A comment %>").must_be_empty end end end foodcritic-8.1.0/spec/spec_helper.rb0000644000004100000410000000037113005226016017441 0ustar www-datawww-databegin require "simplecov" SimpleCov.start do add_filter "/spec/" end rescue LoadError warn "warning: simplecov gem not found; skipping coverage" end require "minitest/pride" require "minitest/spec" require_relative "../lib/foodcritic" foodcritic-8.1.0/spec/regression/0000755000004100000410000000000013005226016017002 5ustar www-datawww-datafoodcritic-8.1.0/spec/regression/cookbooks.txt0000644000004100000410000000713213005226016021537 0ustar www-datawww-dataactivemq:5dce4ca5283d2a6252130a2d800b9387a57d6e01 apparmor:fd09a6fda4f6fc722d4c8d5b8a5c815feda280c0 apt:ea834265247cc8b507ac37ab3a34a9b44ed27a11 aws:a9530561bf559c6db2cb40a93b125607c5ef3efa bluepill:1d6422afcbc910e587c9639e4e0a28c72727c90b boost:14f30e36040a4fcd038f030d9ee1c7fb29b08b68 build-essential:0c636536fb1236f792974f3af38f2950a03ed4b2 chef:dac09eea9fa0d611b7b010160d6b8fa7f4d6ae1e chef-client:7fc4472c9913c9cb1762f979e05047a674318ef5 chef-server:d98b96d69962c7988b9640fe5bee09f771ba8977 chef_handler:d147ca9644f146b97a2d53324ca344321799b45f cron:dce04363b6a02d36f8da88f202cedfae2daa6a2c database:1ab3822ca50824fbdc14f7c89341faa7ae1e90cb dmg:11caf56f57a1168a891f01f0614a01b879aff624 drbd:e65b60894b48855163c3a13ead40fb897d66c4b8 dynect:5ef2328cc612cc4c36882742367af0e2bdbd0367 erlang:58290537b49b495bc18e7a06d9d7560b4d239582 fail2ban:7b1939c9bc345f3a449545cb8e7ddb8190a6fe5f firewall:81a8db5a868f9f486ba694a7fe8eb969a2ae99d1 freebsd:f7a4457507caab966448f4e37709370df05d6167 gecode:87dc9114bf79e67b8eea9f2a0c42929040d08e4b gems:6f8c222cf8326b5266ca3c68344accbbf8d5c468 gunicorn:89be74c6b47bdb980ee1d98f9aae6b747f1d11e8 heartbeat:da496afa31286512a9b977974bec5ff51d6de9d8 homebrew:f42d8d09d8ae3d45f5bdb680dd52da351cb80e2e iis:ab7e4823d375e8eb4f927dee5b7ab0591301cb0e iptables:da126cf900af3cc36bf212973bb8d0be69fa2b9f jetty:d165775c2c7ce3cc484cbe8c7aadf6649505d078 jpackage:23e6f4b717620455ee9d29cbf82d9a7ab7fa6e5b keepalived:629c8e4c5251f6125be9f6eacecb1369fcb1cd4c kickstart:6523fca008362ed72f8fbb25f0c7af70d563b96d logwatch:706174796a3bc1d85d57d3aee792e78cb13570ac lvm:57bd5291fbaa41e7a13f25c4553cdacbfc3ad3dd maradns:e975ded4303432629ad37234cb7a05c9d6edcf73 maven:e486321f1e89f7ad2b9700c08fcbc68c32daa599 memcached:db13b6c4088e93faf995441df4aa856adc84c565 motd-tail:e01096b73c387a46302f63ae6f838fac94e0ca81 mysql:1709b1ea22339a0c829cf5ced8c5a7ed4a186615 nscd:28f37aaf70228c0f5b55c36b78bf3fbd56cb3112 ohai:8ad8c92b14d5198ffa5ebd094acd83ba0c5c828c openldap:2f21ae90544b4f938e554f914955e3fac1a885de openssh:a61b47fb0efbdab731e7929506bb1dc6902f0091 openssl:7f5b84a942f015191ade6badf65a49f1fe7b05b1 partial_search:9a96d68a4af2eff1cf5d3e8ed7ff2ede723a09c8 passenger_apache2:793f7bbaac7a883d5f9ef1414260718e33958ae8 perl:bd6f978aea0ad7e65a8e6266951476b717a9a074 php:f3f5db8d823db821ac696f7b52b2a613c1e2f167 postfix:d7d149e7a7235b2733455e524d86e3a984b9b97c powershell:4b175affe1a8a7d091a8ca905a580bf975af5edc resolver:105ad0a2fc9c065a7c4455cfc07ab7771b8e0da0 rsync:41756f404fc39f3ce407cce9fe03294dd907c0fe rsyslog:8830d558d2ee3126fef56ea3a25a4f0253ce269f sql_server:d9702f8fc29f208c9e712627cda64ccae2d71321 sqlite:3efb50f4166f04f1afefa21f7f8fe7e9082b37ed ssh_known_hosts:a89f0c32e8e2c408a2e153153cc703f1184c6b72 stompserver:bf81830bb7783f4198565201c825c23267e1d515 subversion:cad4c069deca1fbbfb6b8f4d21b6c341cc9c6b55 sudo:00d024f293afb9df4fea23ba127529d67c1daf14 tftp:f4016b14eae2c0fe7fb48020bf28039c2de043a4 tomcat:8934392833cef89b7b779b4cd36ad46d088b643b transmission:c3d62aa4741a55b693630d9cc48b012ff22d2e7b ubuntu:7d21b626873ee397755d59aa222cf7fa681f6e90 ufw:6bc6de62a84f6fa6f172edf0a490f1a332e89e29 unicorn:bacbb2400dcb476dd53784aa965fa9329e8c3869 users:c51c96afca83b382678dc21b8deb25677e6a3d8a vim:88e8d018267d2cd5cfa3260ce55a0025f52dae6f webpi:6cb4fde9dedf2abc980fa49880753512baa26b23 whitelist-node-attrs:2d76a2d179096e3ab048547d0d7849238ac2a5d3 windows:1601558f5fce30bed47bfc6d458a80891e127c61 wix:422b8da1dcf706bb4742d83abc44a649522afe83 xfs:7f1033820459324a863b2955e774cfa366fbc70f xml:0b538834aa26c4df5918aa193029d285d7b1d4de yum:b1191511b011790b2fc5c35cfbc78d0cc7bbc5b8 zlib:45342f78d2866c3b2f443e693df562317e37963d zsh:3bff82836677564478ffc90dfb487ffc986702f3 foodcritic-8.1.0/spec/regression/expected-output.txt0000644000004100000410000010362713005226016022713 0ustar www-datawww-dataFC001: Use strings in preference to symbols to access node attributes: ./apparmor/attributes/apparmor.rb:1 FC001: Use strings in preference to symbols to access node attributes: ./apparmor/recipes/default.rb:21 FC001: Use strings in preference to symbols to access node attributes: ./apparmor/recipes/default.rb:23 FC001: Use strings in preference to symbols to access node attributes: ./chef-server/libraries/omnitruck_client.rb:76 FC001: Use strings in preference to symbols to access node attributes: ./chef-server/libraries/omnitruck_client.rb:77 FC001: Use strings in preference to symbols to access node attributes: ./chef-server/libraries/omnitruck_client.rb:78 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:20 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:21 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:22 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:26 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:27 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:28 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:29 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:31 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:32 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:33 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:34 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:35 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:38 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:39 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:40 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:41 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:42 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:43 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:44 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:45 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:46 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:47 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:49 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/default.rb:50 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/server_proxy.rb:23 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/server_proxy.rb:25 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/server_proxy.rb:28 FC001: Use strings in preference to symbols to access node attributes: ./chef/attributes/server_proxy.rb:29 FC001: Use strings in preference to symbols to access node attributes: ./database/libraries/provider_database_postgresql.rb:113 FC001: Use strings in preference to symbols to access node attributes: ./database/recipes/ebs_backup.rb:31 FC001: Use strings in preference to symbols to access node attributes: ./database/recipes/ebs_volume.rb:22 FC001: Use strings in preference to symbols to access node attributes: ./database/recipes/ebs_volume.rb:86 FC001: Use strings in preference to symbols to access node attributes: ./dmg/attributes/default.rb:19 FC001: Use strings in preference to symbols to access node attributes: ./dmg/attributes/default.rb:20 FC001: Use strings in preference to symbols to access node attributes: ./drbd/attributes/default.rb:1 FC001: Use strings in preference to symbols to access node attributes: ./drbd/attributes/default.rb:2 FC001: Use strings in preference to symbols to access node attributes: ./drbd/attributes/default.rb:3 FC001: Use strings in preference to symbols to access node attributes: ./drbd/attributes/default.rb:4 FC001: Use strings in preference to symbols to access node attributes: ./drbd/attributes/default.rb:5 FC001: Use strings in preference to symbols to access node attributes: ./drbd/attributes/default.rb:6 FC001: Use strings in preference to symbols to access node attributes: ./drbd/attributes/default.rb:7 FC001: Use strings in preference to symbols to access node attributes: ./drbd/attributes/default.rb:8 FC001: Use strings in preference to symbols to access node attributes: ./drbd/templates/default/res.erb:1 FC001: Use strings in preference to symbols to access node attributes: ./dynect/recipes/a_record.rb:22 FC001: Use strings in preference to symbols to access node attributes: ./dynect/recipes/a_record.rb:25 FC001: Use strings in preference to symbols to access node attributes: ./dynect/recipes/a_record.rb:26 FC001: Use strings in preference to symbols to access node attributes: ./dynect/recipes/a_record.rb:27 FC001: Use strings in preference to symbols to access node attributes: ./dynect/recipes/a_record.rb:28 FC001: Use strings in preference to symbols to access node attributes: ./dynect/recipes/a_record.rb:29 FC001: Use strings in preference to symbols to access node attributes: ./dynect/recipes/ec2.rb:23 FC001: Use strings in preference to symbols to access node attributes: ./dynect/recipes/ec2.rb:25 FC001: Use strings in preference to symbols to access node attributes: ./dynect/recipes/ec2.rb:26 FC001: Use strings in preference to symbols to access node attributes: ./dynect/recipes/ec2.rb:40 FC001: Use strings in preference to symbols to access node attributes: ./gems/attributes/mirror.rb:1 FC001: Use strings in preference to symbols to access node attributes: ./gems/attributes/mirror.rb:2 FC001: Use strings in preference to symbols to access node attributes: ./gems/attributes/mirror.rb:3 FC001: Use strings in preference to symbols to access node attributes: ./gems/attributes/server.rb:1 FC001: Use strings in preference to symbols to access node attributes: ./gems/attributes/server.rb:2 FC001: Use strings in preference to symbols to access node attributes: ./gems/attributes/server.rb:3 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/mirror.rb:23 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/mirror.rb:29 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/mirror.rb:36 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/mirror.rb:41 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/mirror.rb:44 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/mirror.rb:45 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/mirror.rb:46 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/server.rb:26 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/server.rb:29 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/server.rb:30 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/server.rb:31 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/server.rb:40 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/server.rb:44 FC001: Use strings in preference to symbols to access node attributes: ./gems/recipes/server.rb:50 FC001: Use strings in preference to symbols to access node attributes: ./gems/templates/default/gem_server.conf.erb:6 FC001: Use strings in preference to symbols to access node attributes: ./gems/templates/default/gem_server.conf.erb:29 FC001: Use strings in preference to symbols to access node attributes: ./gems/templates/default/gem_server.conf.erb:35 FC001: Use strings in preference to symbols to access node attributes: ./iptables/recipes/default.rb:37 FC001: Use strings in preference to symbols to access node attributes: ./jpackage/attributes/default.rb:20 FC001: Use strings in preference to symbols to access node attributes: ./jpackage/recipes/default.rb:22 FC001: Use strings in preference to symbols to access node attributes: ./jpackage/recipes/default.rb:33 FC001: Use strings in preference to symbols to access node attributes: ./kickstart/attributes/default.rb:1 FC001: Use strings in preference to symbols to access node attributes: ./kickstart/attributes/default.rb:2 FC001: Use strings in preference to symbols to access node attributes: ./kickstart/attributes/default.rb:3 FC001: Use strings in preference to symbols to access node attributes: ./kickstart/recipes/server.rb:38 FC001: Use strings in preference to symbols to access node attributes: ./kickstart/recipes/server.rb:41 FC001: Use strings in preference to symbols to access node attributes: ./kickstart/templates/default/kickstart.conf.erb:14 FC001: Use strings in preference to symbols to access node attributes: ./kickstart/templates/default/kickstart.conf.erb:15 FC001: Use strings in preference to symbols to access node attributes: ./kickstart/templates/default/ks.cfg.erb:6 FC001: Use strings in preference to symbols to access node attributes: ./kickstart/templates/default/ks.cfg.erb:9 FC001: Use strings in preference to symbols to access node attributes: ./kickstart/templates/default/ks.cfg.erb:10 FC001: Use strings in preference to symbols to access node attributes: ./maradns/attributes/default.rb:17 FC001: Use strings in preference to symbols to access node attributes: ./maradns/recipes/default.rb:46 FC001: Use strings in preference to symbols to access node attributes: ./maradns/recipes/default.rb:47 FC001: Use strings in preference to symbols to access node attributes: ./maradns/templates/default/mararc.erb:8 FC001: Use strings in preference to symbols to access node attributes: ./maradns/templates/default/mararc.erb:9 FC001: Use strings in preference to symbols to access node attributes: ./maradns/templates/default/mararc.erb:31 FC001: Use strings in preference to symbols to access node attributes: ./memcached/attributes/default.rb:1 FC001: Use strings in preference to symbols to access node attributes: ./memcached/attributes/default.rb:2 FC001: Use strings in preference to symbols to access node attributes: ./memcached/attributes/default.rb:3 FC001: Use strings in preference to symbols to access node attributes: ./memcached/attributes/default.rb:4 FC001: Use strings in preference to symbols to access node attributes: ./memcached/attributes/default.rb:5 FC001: Use strings in preference to symbols to access node attributes: ./memcached/definitions/memcached_instance.rb:29 FC001: Use strings in preference to symbols to access node attributes: ./memcached/definitions/memcached_instance.rb:30 FC001: Use strings in preference to symbols to access node attributes: ./memcached/definitions/memcached_instance.rb:31 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:25 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:39 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:47 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:48 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:49 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:50 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:51 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:62 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:63 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:64 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:65 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:66 FC001: Use strings in preference to symbols to access node attributes: ./memcached/recipes/default.rb:72 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/attributes/default.rb:1 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/attributes/default.rb:2 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/attributes/default.rb:3 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/attributes/default.rb:4 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/attributes/default.rb:5 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/recipes/default.rb:28 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/recipes/default.rb:54 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/recipes/default.rb:59 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/recipes/mod_rails.rb:28 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/recipes/mod_rails.rb:37 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/recipes/mod_rails.rb:46 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/templates/default/passenger.conf.erb:1 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/templates/default/passenger.conf.erb:2 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/templates/default/passenger.conf.erb:3 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/templates/default/passenger.load.erb:1 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/templates/default/passenger_web_app.conf.erb:17 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/templates/default/passenger_web_app.conf.erb:18 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/templates/default/passenger_web_app.conf.erb:21 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/templates/default/web_app.conf.erb:17 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/templates/default/web_app.conf.erb:18 FC001: Use strings in preference to symbols to access node attributes: ./passenger_apache2/templates/default/web_app.conf.erb:21 FC001: Use strings in preference to symbols to access node attributes: ./perl/definitions/cpan_module.rb:27 FC001: Use strings in preference to symbols to access node attributes: ./perl/recipes/default.rb:26 FC001: Use strings in preference to symbols to access node attributes: ./rsyslog/recipes/client.rb:26 FC001: Use strings in preference to symbols to access node attributes: ./stompserver/templates/default/sv-stompserver-run.erb:2 FC001: Use strings in preference to symbols to access node attributes: ./ufw/attributes/default.rb:1 FC001: Use strings in preference to symbols to access node attributes: ./ufw/attributes/default.rb:2 FC001: Use strings in preference to symbols to access node attributes: ./vim/attributes/default.rb:20 FC001: Use strings in preference to symbols to access node attributes: ./vim/recipes/default.rb:33 FC001: Use strings in preference to symbols to access node attributes: ./whitelist-node-attrs/attributes/default.rb:20 FC001: Use strings in preference to symbols to access node attributes: ./windows/providers/reboot.rb:22 FC001: Use strings in preference to symbols to access node attributes: ./windows/providers/reboot.rb:23 FC001: Use strings in preference to symbols to access node attributes: ./windows/providers/reboot.rb:24 FC002: Avoid string interpolation where not required: ./chef-client/recipes/cron.rb:103 FC002: Avoid string interpolation where not required: ./dynect/recipes/ec2.rb:70 FC002: Avoid string interpolation where not required: ./gems/recipes/mirror.rb:23 FC002: Avoid string interpolation where not required: ./gems/recipes/server.rb:44 FC002: Avoid string interpolation where not required: ./iis/providers/site.rb:36 FC002: Avoid string interpolation where not required: ./mysql/attributes/server.rb:205 FC002: Avoid string interpolation where not required: ./mysql/attributes/server.rb:206 FC002: Avoid string interpolation where not required: ./mysql/attributes/server.rb:207 FC002: Avoid string interpolation where not required: ./mysql/attributes/server.rb:208 FC002: Avoid string interpolation where not required: ./passenger_apache2/templates/default/passenger_web_app.conf.erb:3 FC002: Avoid string interpolation where not required: ./passenger_apache2/templates/default/web_app.conf.erb:3 FC002: Avoid string interpolation where not required: ./perl/recipes/default.rb:37 FC002: Avoid string interpolation where not required: ./perl/recipes/default.rb:43 FC002: Avoid string interpolation where not required: ./rsyslog/recipes/default.rb:24 FC002: Avoid string interpolation where not required: ./rsyslog/recipes/default.rb:63 FC002: Avoid string interpolation where not required: ./windows/libraries/registry_helper.rb:99 FC002: Avoid string interpolation where not required: ./windows/libraries/registry_helper.rb:173 FC002: Avoid string interpolation where not required: ./windows/libraries/windows_privileged.rb:42 FC002: Avoid string interpolation where not required: ./windows/libraries/windows_privileged.rb:56 FC003: Check whether you are running with chef server before using server-specific features: ./database/recipes/ebs_backup.rb:33 FC003: Check whether you are running with chef server before using server-specific features: ./database/recipes/ebs_volume.rb:49 FC003: Check whether you are running with chef server before using server-specific features: ./database/recipes/master.rb:30 FC003: Check whether you are running with chef server before using server-specific features: ./database/recipes/master.rb:57 FC003: Check whether you are running with chef server before using server-specific features: ./drbd/recipes/pair.rb:31 FC003: Check whether you are running with chef server before using server-specific features: ./heartbeat/providers/default.rb:22 FC003: Check whether you are running with chef server before using server-specific features: ./partial_search/libraries/partial_search.rb:65 FC003: Check whether you are running with chef server before using server-specific features: ./resolver/recipes/from_server_role.rb:21 FC003: Check whether you are running with chef server before using server-specific features: ./ssh_known_hosts/recipes/default.rb:23 FC003: Check whether you are running with chef server before using server-specific features: ./ufw/recipes/databag.rb:32 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./boost/recipes/source.rb:1 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./build-essential/recipes/default.rb:65 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./chef-client/recipes/service.rb:197 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./chef-client/recipes/service.rb:209 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./chef-client/recipes/service.rb:223 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./chef-server/recipes/dev.rb:16 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./mysql/recipes/client.rb:42 FC009: Resource attribute not recognised: ./chef-server/recipes/default.rb:46 FC014: Consider extracting long ruby_block to library: ./lvm/providers/logical_volume.rb:18 FC015: Consider converting definition to a Custom Resource: iptables/definitions/iptables_rule.rb:1 FC015: Consider converting definition to a Custom Resource: memcached/definitions/memcached_instance.rb:1 FC015: Consider converting definition to a Custom Resource: perl/definitions/cpan_module.rb:1 FC015: Consider converting definition to a Custom Resource: unicorn/definitions/unicorn_config.rb:1 FC016: LWRP does not declare a default action: ./dynect/resources/rr.rb:1 FC016: LWRP does not declare a default action: ./heartbeat/resources/ipaddr.rb:1 FC016: LWRP does not declare a default action: ./transmission/resources/torrent_file.rb:1 FC017: LWRP does not notify when updated: ./apt/providers/repository.rb:124 FC017: LWRP does not notify when updated: ./cron/providers/d.rb:1 FC017: LWRP does not notify when updated: ./dmg/providers/package.rb:27 FC017: LWRP does not notify when updated: ./firewall/providers/rule_ufw.rb:23 FC017: LWRP does not notify when updated: ./firewall/providers/rule_ufw.rb:27 FC017: LWRP does not notify when updated: ./firewall/providers/rule_ufw.rb:31 FC017: LWRP does not notify when updated: ./heartbeat/providers/default.rb:20 FC017: LWRP does not notify when updated: ./homebrew/providers/tap.rb:13 FC017: LWRP does not notify when updated: ./homebrew/providers/tap.rb:21 FC017: LWRP does not notify when updated: ./iis/providers/app.rb:26 FC017: LWRP does not notify when updated: ./iis/providers/app.rb:40 FC017: LWRP does not notify when updated: ./iis/providers/app.rb:57 FC017: LWRP does not notify when updated: ./iis/providers/config.rb:27 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:27 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:41 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:68 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:78 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:88 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:98 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:106 FC017: LWRP does not notify when updated: ./iis/providers/site.rb:26 FC017: LWRP does not notify when updated: ./iis/providers/site.rb:50 FC017: LWRP does not notify when updated: ./iis/providers/site.rb:84 FC017: LWRP does not notify when updated: ./iis/providers/site.rb:94 FC017: LWRP does not notify when updated: ./iis/providers/site.rb:104 FC017: LWRP does not notify when updated: ./iis/providers/site.rb:114 FC017: LWRP does not notify when updated: ./lvm/providers/physical_volume.rb:6 FC017: LWRP does not notify when updated: ./maven/providers/default.rb:61 FC017: LWRP does not notify when updated: ./maven/providers/default.rb:65 FC017: LWRP does not notify when updated: ./php/providers/pear_channel.rb:31 FC017: LWRP does not notify when updated: ./php/providers/pear_channel.rb:40 FC017: LWRP does not notify when updated: ./php/providers/pear_channel.rb:69 FC017: LWRP does not notify when updated: ./powershell/providers/default.rb:19 FC017: LWRP does not notify when updated: ./rsync/providers/serve.rb:65 FC017: LWRP does not notify when updated: ./rsync/providers/serve.rb:69 FC017: LWRP does not notify when updated: ./sudo/providers/default.rb:102 FC017: LWRP does not notify when updated: ./webpi/providers/product.rb:26 FC017: LWRP does not notify when updated: ./windows/providers/auto_run.rb:21 FC017: LWRP does not notify when updated: ./windows/providers/auto_run.rb:27 FC017: LWRP does not notify when updated: ./windows/providers/batch.rb:24 FC017: LWRP does not notify when updated: ./windows/providers/package.rb:35 FC017: LWRP does not notify when updated: ./windows/providers/package.rb:53 FC017: LWRP does not notify when updated: ./windows/providers/package.rb:64 FC017: LWRP does not notify when updated: ./windows/providers/pagefile.rb:24 FC017: LWRP does not notify when updated: ./windows/providers/pagefile.rb:66 FC017: LWRP does not notify when updated: ./windows/providers/path.rb:21 FC017: LWRP does not notify when updated: ./windows/providers/path.rb:29 FC017: LWRP does not notify when updated: ./windows/providers/reboot.rb:21 FC017: LWRP does not notify when updated: ./windows/providers/reboot.rb:27 FC017: LWRP does not notify when updated: ./windows/providers/registry.rb:27 FC017: LWRP does not notify when updated: ./windows/providers/registry.rb:31 FC017: LWRP does not notify when updated: ./windows/providers/registry.rb:35 FC017: LWRP does not notify when updated: ./windows/providers/registry.rb:61 FC017: LWRP does not notify when updated: ./windows/providers/task.rb:24 FC017: LWRP does not notify when updated: ./windows/providers/task.rb:43 FC017: LWRP does not notify when updated: ./windows/providers/task.rb:58 FC017: LWRP does not notify when updated: ./windows/providers/task.rb:75 FC017: LWRP does not notify when updated: ./windows/providers/zipfile.rb:27 FC017: LWRP does not notify when updated: ./windows/providers/zipfile.rb:44 FC017: LWRP does not notify when updated: ./yum/providers/key.rb:25 FC017: LWRP does not notify when updated: ./yum/providers/repository.rb:28 FC017: LWRP does not notify when updated: ./yum/providers/repository.rb:45 FC018: LWRP uses deprecated notification syntax: ./windows/providers/shortcut.rb:54 FC019: Access node attributes in a consistent manner: chef-server/libraries/omnitruck_client.rb:76 FC019: Access node attributes in a consistent manner: chef-server/libraries/omnitruck_client.rb:77 FC019: Access node attributes in a consistent manner: chef-server/libraries/omnitruck_client.rb:78 FC019: Access node attributes in a consistent manner: chef/attributes/default.rb:38 FC019: Access node attributes in a consistent manner: chef/attributes/default.rb:39 FC019: Access node attributes in a consistent manner: chef/attributes/default.rb:50 FC019: Access node attributes in a consistent manner: chef/attributes/server_proxy.rb:26 FC019: Access node attributes in a consistent manner: database/libraries/provider_database_postgresql.rb:113 FC019: Access node attributes in a consistent manner: database/recipes/ebs_backup.rb:31 FC019: Access node attributes in a consistent manner: database/recipes/ebs_volume.rb:22 FC019: Access node attributes in a consistent manner: database/recipes/ebs_volume.rb:86 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:1 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:2 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:3 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:4 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:5 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:6 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:7 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:8 FC019: Access node attributes in a consistent manner: dynect/recipes/a_record.rb:22 FC019: Access node attributes in a consistent manner: dynect/recipes/a_record.rb:25 FC019: Access node attributes in a consistent manner: dynect/recipes/a_record.rb:26 FC019: Access node attributes in a consistent manner: dynect/recipes/a_record.rb:27 FC019: Access node attributes in a consistent manner: dynect/recipes/a_record.rb:28 FC019: Access node attributes in a consistent manner: dynect/recipes/a_record.rb:29 FC019: Access node attributes in a consistent manner: dynect/recipes/ec2.rb:23 FC019: Access node attributes in a consistent manner: dynect/recipes/ec2.rb:25 FC019: Access node attributes in a consistent manner: dynect/recipes/ec2.rb:26 FC019: Access node attributes in a consistent manner: dynect/recipes/ec2.rb:40 FC019: Access node attributes in a consistent manner: gecode/recipes/package.rb:29 FC019: Access node attributes in a consistent manner: gecode/recipes/package.rb:30 FC019: Access node attributes in a consistent manner: gecode/recipes/package.rb:51 FC019: Access node attributes in a consistent manner: gecode/recipes/package.rb:56 FC019: Access node attributes in a consistent manner: passenger_apache2/recipes/default.rb:33 FC019: Access node attributes in a consistent manner: passenger_apache2/recipes/default.rb:41 FC019: Access node attributes in a consistent manner: perl/definitions/cpan_module.rb:27 FC019: Access node attributes in a consistent manner: perl/recipes/default.rb:26 FC019: Access node attributes in a consistent manner: powershell/recipes/default.rb:69 FC019: Access node attributes in a consistent manner: ufw/attributes/default.rb:1 FC019: Access node attributes in a consistent manner: ufw/attributes/default.rb:2 FC023: Prefer conditional attributes: ./apt/providers/repository.rb:26 FC023: Prefer conditional attributes: ./apt/providers/repository.rb:68 FC023: Prefer conditional attributes: ./chef-client/recipes/config.rb:62 FC023: Prefer conditional attributes: ./database/recipes/ebs_backup.rb:81 FC023: Prefer conditional attributes: ./gecode/recipes/package.rb:29 FC023: Prefer conditional attributes: ./homebrew/providers/tap.rb:14 FC023: Prefer conditional attributes: ./homebrew/providers/tap.rb:22 FC023: Prefer conditional attributes: ./lvm/providers/volume_group.rb:12 FC023: Prefer conditional attributes: ./passenger_apache2/recipes/mod_rails.rb:27 FC023: Prefer conditional attributes: ./users/providers/manage.rb:70 FC023: Prefer conditional attributes: ./users/providers/manage.rb:101 FC023: Prefer conditional attributes: ./yum/providers/key.rb:59 FC024: Consider adding platform equivalents: ./mysql/recipes/server.rb:130 FC024: Consider adding platform equivalents: ./mysql/recipes/server.rb:132 FC024: Consider adding platform equivalents: ./transmission/recipes/default.rb:42 FC025: Prefer chef_gem to compile-time gem install: ./transmission/recipes/default.rb:25 FC025: Prefer chef_gem to compile-time gem install: ./transmission/recipes/default.rb:31 FC029: No leading cookbook name in recipe metadata: ./apparmor/metadata.rb:8 FC034: Unused template variables: ./activemq/templates/default/wrapper.conf.erb:1 FC042: Prefer include_recipe to require_recipe: ./postfix/recipes/aliases.rb:17 FC043: Prefer new notification syntax: ./apt/providers/repository.rb:112 FC043: Prefer new notification syntax: ./apt/recipes/default.rb:48 FC043: Prefer new notification syntax: ./database/recipes/ebs_volume.rb:104 FC043: Prefer new notification syntax: ./drbd/recipes/pair.rb:45 FC043: Prefer new notification syntax: ./drbd/recipes/pair.rb:58 FC043: Prefer new notification syntax: ./drbd/recipes/pair.rb:65 FC043: Prefer new notification syntax: ./drbd/recipes/pair.rb:85 FC043: Prefer new notification syntax: ./dynect/recipes/ec2.rb:69 FC043: Prefer new notification syntax: ./gems/recipes/server.rb:50 FC043: Prefer new notification syntax: ./iptables/definitions/iptables_rule.rb:20 FC043: Prefer new notification syntax: ./iptables/definitions/iptables_rule.rb:23 FC043: Prefer new notification syntax: ./jetty/recipes/cargo.rb:41 FC043: Prefer new notification syntax: ./jetty/recipes/cargo.rb:56 FC043: Prefer new notification syntax: ./jetty/recipes/cargo.rb:65 FC043: Prefer new notification syntax: ./jetty/recipes/cargo.rb:80 FC043: Prefer new notification syntax: ./jetty/recipes/default.rb:53 FC043: Prefer new notification syntax: ./jetty/recipes/default.rb:61 FC043: Prefer new notification syntax: ./jpackage/recipes/default.rb:33 FC043: Prefer new notification syntax: ./maradns/recipes/default.rb:37 FC043: Prefer new notification syntax: ./maradns/recipes/default.rb:46 FC043: Prefer new notification syntax: ./memcached/recipes/default.rb:41 FC043: Prefer new notification syntax: ./memcached/recipes/default.rb:56 FC043: Prefer new notification syntax: ./memcached/recipes/default.rb:74 FC043: Prefer new notification syntax: ./openldap/recipes/auth.rb:46 FC043: Prefer new notification syntax: ./openldap/recipes/auth.rb:56 FC043: Prefer new notification syntax: ./openldap/recipes/server.rb:71 FC043: Prefer new notification syntax: ./openldap/recipes/server.rb:78 FC043: Prefer new notification syntax: ./openldap/recipes/server.rb:97 FC043: Prefer new notification syntax: ./subversion/recipes/server.rb:30 FC043: Prefer new notification syntax: ./tomcat/recipes/default.rb:50 FC043: Prefer new notification syntax: ./tomcat/recipes/default.rb:58 FC043: Prefer new notification syntax: ./tomcat/recipes/default.rb:67 FC043: Prefer new notification syntax: ./tomcat/recipes/users.rb:22 FC043: Prefer new notification syntax: ./yum/providers/key.rb:60 FC043: Prefer new notification syntax: ./yum/providers/repository.rb:94 FC044: Avoid bare attribute keys: ./resolver/attributes/default.rb:20 FC045: Metadata does not contain cookbook name: ./maven/metadata.rb:1 FC047: Attribute assignment does not specify precedence: ./jetty/recipes/cargo.rb:35 FC047: Attribute assignment does not specify precedence: ./users/providers/manage.rb:55 FC048: Prefer Mixlib::ShellOut: ./apt/providers/repository.rb:26 FC048: Prefer Mixlib::ShellOut: ./chef-client/recipes/cron.rb:38 FC048: Prefer Mixlib::ShellOut: ./chef-client/recipes/delete_validation.rb:20 FC048: Prefer Mixlib::ShellOut: ./chef-client/recipes/service.rb:52 FC048: Prefer Mixlib::ShellOut: ./chef-client/recipes/task.rb:42 FC048: Prefer Mixlib::ShellOut: ./dmg/providers/package.rb:44 FC048: Prefer Mixlib::ShellOut: ./dmg/providers/package.rb:47 FC048: Prefer Mixlib::ShellOut: ./dmg/providers/package.rb:76 FC048: Prefer Mixlib::ShellOut: ./windows/providers/task.rb:106 FC052: Metadata uses the unimplemented "suggests" keyword: ./build-essential/metadata.rb:14 FC052: Metadata uses the unimplemented "suggests" keyword: ./mysql/metadata.rb:19 FC052: Metadata uses the unimplemented "suggests" keyword: ./mysql/metadata.rb:20 FC052: Metadata uses the unimplemented "suggests" keyword: ./nscd/metadata.rb:7 FC053: Metadata uses the unimplemented "recommends" keyword: ./boost/metadata.rb:12 foodcritic-8.1.0/spec/regression/regression_spec.rb0000644000004100000410000000057413005226016022527 0ustar www-datawww-datarequire_relative "../regression_helpers" describe "regression test" do let(:expected_lint_output) do File.read("spec/regression/expected-output.txt") end let(:actual_lint_output) do lint_regression_cookbooks end it "should result in the expected matches against a pinned set of cookbooks" do actual_lint_output.must_equal expected_lint_output end end foodcritic-8.1.0/spec/regression_helpers.rb0000644000004100000410000000204713005226016021054 0ustar www-datawww-datarequire_relative "spec_helper" require "fileutils" require "pathname" def lint_regression_cookbooks working_dir = Pathname.new("tmp/regression") FileUtils.mkdir_p(working_dir) pinned_cookbooks("spec/regression/cookbooks.txt").each do |cbk| clone_cookbook(working_dir, cbk) end lint_cookbooks(working_dir) end def pinned_cookbooks(path) File.read(path).lines.map do |line| name, ref = line.strip.split(":") { :name => name, :ref => ref } end end def clone_cookbook(clone_path, cbk) target_path = clone_path + cbk[:name] unless Dir.exist?(target_path) `git clone -q git://github.com/chef-cookbooks/#{cbk[:name]}.git #{target_path}` raise "Unable to clone git://github.com/chef-cookbooks/#{cbk[:name]}.git" unless $?.success? end `cd #{target_path} && git checkout -q #{cbk[:ref]}` raise "Unable to checkout revision for #{cbk[:name]}" unless $?.success? end def lint_cookbooks(cookbook_path) result = `cd #{cookbook_path} && foodcritic .` raise "Unable to lint #{cookbook_path}" unless $?.success? result end foodcritic-8.1.0/lib/0000755000004100000410000000000013005226016014436 5ustar www-datawww-datafoodcritic-8.1.0/lib/foodcritic/0000755000004100000410000000000013005226016016563 5ustar www-datawww-datafoodcritic-8.1.0/lib/foodcritic/domain.rb0000644000004100000410000000546713005226016020373 0ustar www-datawww-datarequire "cucumber/core/gherkin/tag_expression" module FoodCritic # A warning of a possible issue class Warning attr_reader :rule, :match, :is_failed # Create a new warning. # # Warning.new(rule, :filename => 'foo/recipes.default.rb', # :line => 5, :column=> 40) # def initialize(rule, match = {}, options = {}) @rule, @match = rule, match @is_failed = if options[:fail_tags].empty? false else rule.matches_tags?(options[:fail_tags]) end end # If this warning has failed or not. def failed? @is_failed end end # Simple container for rule listings. class RuleList attr_reader :rules def initialize(rules = []) @rules = rules end def to_s @rules.sort { |a, b| a.code <=> b.code }. map { |r| r.to_s }.join("\n") end end # The collected warnings (if any) raised against a cookbook tree. class Review attr_reader :cookbook_paths, :warnings def initialize(cookbook_paths, warnings) @cookbook_paths = Array(cookbook_paths) @warnings = warnings end # If any of the warnings in this review have failed or not. def failed? warnings.any? { |w| w.failed? } end # Returns an array of warnings that are marked as failed. def failures warnings.select { |w| w.failed? } end # Returns a string representation of this review. This representation is # liable to change. def to_s # Sorted by filename and line number. # # FC123: My rule name: foo/recipes/default.rb @warnings.map do |w| ["#{w.rule.code}: #{w.rule.name}: #{w.match[:filename]}", w.match[:line].to_i] end.sort do |x, y| x.first == y.first ? x[1] <=> y[1] : x.first <=> y.first end.map { |w| "#{w.first}:#{w[1]}" }.uniq.join("\n") end end # A rule to be matched against. class Rule attr_accessor :code, :name, :applies_to, :cookbook, :attributes, :recipe, :provider, :resource, :metadata, :library, :template, :role, :environment attr_writer :tags def initialize(code, name) @code, @name = code, name @tags = [code] @applies_to = Proc.new { |version| true } end # The tags associated with this rule. Rule is always tagged with the tag # `any` and the rule code. def tags ["any"] + @tags end # Checks the rule tags to see if they match a Gherkin (Cucumber) expression def matches_tags?(tag_expr) Cucumber::Core::Gherkin::TagExpression.new(tag_expr).evaluate( tags.map { |tag| Cucumber::Core::Ast::Tag.new(nil, tag) } ) end # Returns a string representation of this rule. def to_s "#{@code}: #{@name}" end end end foodcritic-8.1.0/lib/foodcritic/ast.rb0000644000004100000410000000101013005226016017667 0ustar www-datawww-datamodule FoodCritic module AST private def ast_hash_node?(node) node.first.respond_to?(:first) && node.first.first == :assoc_new end def ast_node_has_children?(node) node.respond_to?(:first) && !node.respond_to?(:match) end # If the provided node is the line / column information. def position_node?(node) node.respond_to?(:length) && node.length == 2 && node.respond_to?(:all?) && node.all? { |child| child.respond_to?(:to_i) } end end end foodcritic-8.1.0/lib/foodcritic/xml.rb0000644000004100000410000000253013005226016017710 0ustar www-datawww-datamodule FoodCritic module XML private def xml_array_node(doc, xml_node, child) n = xml_create_node(doc, child) xml_node.add_child(build_xml(child, doc, n)) end def xml_create_node(doc, c) Nokogiri::XML::Node.new(c.first.to_s.gsub(/[^a-z_]/, ""), doc) end def xml_document(doc, xml_node) if doc.nil? doc = Nokogiri::XML("") xml_node = doc.root end [doc, xml_node] end def xml_hash_node(doc, xml_node, child) child.each do |c| n = xml_create_node(doc, c) c.drop(1).each do |a| if a.first == :@label # if the ruby 1.9 hash syntax is used, # the ast like below is generated. # ast: # [:assoc_new, # [:@label, "service:", [6, 39]]] # create a label node and add it to the accos_new children nodes label_node = xml_create_node(doc, a) n.add_child(build_xml(a, doc, label_node)) xml_node.add_child(n) else xml_node.add_child(build_xml(a, doc, n)) end end end end def xml_position_node(doc, xml_node, child) pos = Nokogiri::XML::Node.new("pos", doc) pos["line"] = child.first.to_s pos["column"] = child[1].to_s xml_node.add_child(pos) end end end foodcritic-8.1.0/lib/foodcritic/rules.rb0000644000004100000410000007114213005226016020247 0ustar www-datawww-data# This file contains all of the rules that ship with foodcritic. # # * Foodcritic rules perform static code analysis - rather than the cookbook # code being loaded by the interpreter it is parsed into a tree (AST) that is # then passed to each rule. # * Rules can use a number of API functions that ship with foodcritic to make # sense of the parse tree. # * Rules can also use XPath to query the AST. A rule can consist of a XPath # query only, as any nodes returned from a `recipe` block will be converted # into warnings. rule "FC001", "Use strings in preference to symbols to access node attributes" do tags %w{style attributes} recipe do |ast| attribute_access(ast, type: :symbol) end end rule "FC002", "Avoid string interpolation where not required" do tags %w{style strings} recipe do |ast| ast.xpath(%q{//*[self::string_literal | self::assoc_new]/string_add[ count(descendant::string_embexpr) = 1 and count(string_add) = 0]}) end end rule "FC003", "Check whether you are running with chef server before using"\ " server-specific features" do tags %w{portability solo} recipe do |ast, filename| unless checks_for_chef_solo?(ast) || chef_solo_search_supported?(filename) searches(ast) end end end rule "FC004", "Use a service resource to start and stop services" do tags %w{style services} recipe do |ast| find_resources(ast, type: "execute").find_all do |cmd| cmd_str = (resource_attribute(cmd, "command") || resource_name(cmd)).to_s (cmd_str.include?("/etc/init.d") || ["service ", "/sbin/service ", "start ", "stop ", "invoke-rc.d "].any? do |service_cmd| cmd_str.start_with?(service_cmd) end) && %w{start stop restart reload}.any? { |a| cmd_str.include?(a) } end end end rule "FC005", "Avoid repetition of resource declarations" do tags %w{style} recipe do |ast| resources = find_resources(ast).map do |res| resource_attributes(res).merge({ type: resource_type(res), ast: res }) end.chunk do |res| res[:type] + res[:ast].xpath("ancestor::*[self::if | self::unless | self::elsif | self::else | self::when | self::method_add_block/call][position() = 1]/ descendant::pos[position() = 1]").to_s + res[:ast].xpath("ancestor::method_add_block/command[ ident/@value='action']/args_add_block/descendant::ident/@value").to_s end.reject { |res| res[1].size < 3 } resources.map do |cont_res| first_resource = cont_res[1][0][:ast] # we have contiguous resources of the same type, but do they share the # same attributes? sorted_atts = cont_res[1].map do |atts| atts.delete_if { |k| k == :ast }.to_a.sort do |x, y| x.first.to_s <=> y.first.to_s end end first_resource if sorted_atts.all? do |att| (att - sorted_atts.inject { |atts, a| atts & a }).length == 1 end end.compact end end rule "FC006", "Mode should be quoted or fully specified when "\ "setting file permissions" do tags %w{correctness files} recipe do |ast| ast.xpath(%q{//ident[@value='mode']/parent::command/ descendant::int[string-length(@value) < 5 and not(starts-with(@value, "0") and string-length(@value) = 4)][count(ancestor::aref) = 0]/ ancestor::method_add_block}) end end rule "FC007", "Ensure recipe dependencies are reflected "\ "in cookbook metadata" do tags %w{correctness metadata} recipe do |ast, filename| metadata_path = Pathname.new( File.join(File.dirname(filename), "..", "metadata.rb")).cleanpath next unless File.exist? metadata_path actual_included = included_recipes(ast, with_partial_names: false) undeclared = actual_included.keys.map do |recipe| recipe.split("::").first end - [cookbook_name(filename)] - declared_dependencies(read_ast(metadata_path)) actual_included.map do |recipe, include_stmts| if undeclared.include?(recipe) || undeclared.any? { |u| recipe.start_with?("#{u}::") } include_stmts end end.flatten.compact end end rule "FC008", "Generated cookbook metadata needs updating" do tags %w{style metadata} metadata do |ast, filename| { "maintainer" => "YOUR_COMPANY_NAME", "maintainer_email" => "YOUR_EMAIL", }.map do |field, value| ast.xpath(%Q{//command[ident/@value='#{field}']/ descendant::tstring_content[@value='#{value}']}) end end end rule "FC009", "Resource attribute not recognised" do tags %w{correctness} recipe do |ast| matches = [] resource_attributes_by_type(ast).each do |type, resources| resources.each do |resource| resource.keys.map(&:to_sym).reject do |att| resource_attribute?(type.to_sym, att) end.each do |invalid_att| matches << find_resources(ast, type: type).find do |res| resource_attributes(res).include?(invalid_att.to_s) end end end end matches end end rule "FC010", "Invalid search syntax" do tags %w{correctness search} recipe do |ast| # This only works for literal search strings literal_searches(ast).reject { |search| valid_query?(search["value"]) } end end rule "FC011", "Missing README in markdown format" do tags %w{style readme} cookbook do |filename| unless File.exist?(File.join(filename, "README.md")) [file_match(File.join(filename, "README.md"))] end end end rule "FC012", "Use Markdown for README rather than RDoc" do tags %w{style readme} cookbook do |filename| if File.exist?(File.join(filename, "README.rdoc")) [file_match(File.join(filename, "README.rdoc"))] end end end rule "FC013", "Use file_cache_path rather than hard-coding tmp paths" do tags %w{style files} recipe do |ast| find_resources(ast, type: "remote_file").find_all do |download| path = (resource_attribute(download, "path") || resource_name(download)).to_s path.start_with?("/tmp/") end end end rule "FC014", "Consider extracting long ruby_block to library" do tags %w{style libraries} recipe do |ast| find_resources(ast, type: "ruby_block").find_all do |rb| lines = rb.xpath("descendant::fcall[ident/@value='block']/../../ descendant::*[@line]/@line").map { |n| n.value.to_i }.sort (!lines.empty?) && (lines.last - lines.first) > 15 end end end rule "FC015", "Consider converting definition to a Custom Resource" do tags %w{style definitions lwrp} cookbook do |dir| Dir[File.join(dir, "definitions", "*.rb")].reject do |entry| [".", ".."].include? entry end.map { |entry| file_match(entry) } end end rule "FC016", "LWRP does not declare a default action" do tags %w{correctness lwrp} resource do |ast, filename| unless ["//ident/@value='default_action'", "//def/bodystmt/descendant::assign/ var_field/ivar/@value='@action'"].any? { |expr| ast.xpath(expr) } [file_match(filename)] end end end rule "FC017", "LWRP does not notify when updated" do tags %w{correctness lwrp} provider do |ast, filename| use_inline_resources = !ast.xpath('//*[self::vcall or self::var_ref]/ident [@value="use_inline_resources"]').empty? unless use_inline_resources actions = ast.xpath('//method_add_block/command[ident/@value="action"]/ args_add_block/descendant::symbol/ident') actions.reject do |action| blk = action.xpath('ancestor::command[1]/ following-sibling::*[self::do_block or self::brace_block]') empty = !blk.xpath("stmts_add/void_stmt").empty? converge_by = !blk.xpath('descendant::*[self::command or self::fcall] /ident[@value="converge_by"]').empty? updated_by_last_action = !blk.xpath('descendant::*[self::call or self::command_call]/*[self::vcall or self::var_ref/ident/ @value="new_resource"]/../ident[@value="updated_by_last_action"] ').empty? empty || converge_by || updated_by_last_action end end end end rule "FC018", "LWRP uses deprecated notification syntax" do tags %w{style lwrp deprecated} provider do |ast| ast.xpath("//assign/var_field/ivar[@value='@updated']").map do |class_var| match(class_var) end + ast.xpath(%q{//assign/field/*[self::vcall or self::var_ref/ident/ @value='new_resource']/../ident[@value='updated']}) end end rule "FC019", "Access node attributes in a consistent manner" do tags %w{style attributes} cookbook do |cookbook_dir| asts = {}; files = Dir["#{cookbook_dir}/*/*.rb"].reject do |file| relative_path = Pathname.new(file).relative_path_from( Pathname.new(cookbook_dir)) relative_path.to_s.split(File::SEPARATOR).include?("spec") end.map do |file| { path: file, ast: read_ast(file) } end types = [:string, :symbol, :vivified].map do |type| { access_type: type, count: files.map do |file| attribute_access(file[:ast], type: type, ignore_calls: true, cookbook_dir: cookbook_dir, ignore: "run_state").tap do |ast| unless ast.empty? (asts[type] ||= []) << { ast: ast, path: file[:path] } end end.size end.inject(:+) } end.reject { |type| type[:count] == 0 } if asts.size > 1 least_used = asts[types.min do |a, b| a[:count] <=> b[:count] end[:access_type]] least_used.map do |file| file[:ast].map do |ast| match(ast).merge(filename: file[:path]) end.flatten end end end end rule "FC021", "Resource condition in provider may not behave as expected" do tags %w{correctness lwrp} provider do |ast| find_resources(ast).map do |resource| condition = resource.xpath(%q{//method_add_block/ descendant::ident[@value='not_if' or @value='only_if']/ ancestor::*[self::method_add_block or self::command][1][descendant:: ident/@value='new_resource']/ancestor::stmts_add[2]/method_add_block/ command[count(descendant::string_embexpr) = 0]}) condition end.compact end end rule "FC022", "Resource condition within loop may not behave as expected" do tags %w{correctness} recipe do |ast| ast.xpath("//call[ident/@value='each']/../do_block[count(ancestor:: method_add_block/method_add_arg/fcall/ident[@value='only_if' or @value = 'not_if']) = 0]").map do |lp| block_vars = lp.xpath("block_var/params/child::*").map do |n| n.name.sub(/^ident/, "") end + lp.xpath("block_var/params/child::*/descendant::ident").map do |v| v["value"] end find_resources(lp).map do |resource| # if any of the parameters to the block are used in a condition then we # have a match unless (block_vars & (resource.xpath(%q{descendant::ident[@value='not_if' or @value='only_if']/ancestor::*[self::method_add_block or self::command][1]/descendant::ident/@value}).map do |a| a.value end)).empty? c = resource.xpath("command[count(descendant::string_embexpr) = 0]") if resource.xpath("command/ident/@value").first.value == "define" next end resource unless c.empty? || block_vars.any? do |var| !resource.xpath(%Q{command/args_add_block/args_add/ var_ref/ident[@value='#{var}']}).empty? end end end end.flatten.compact end end rule "FC023", "Prefer conditional attributes" do tags %w{style} recipe do |ast| ast.xpath(%q{//method_add_block[command/ident][count(descendant::ident [@value='only_if' or @value='not_if']) = 0]/ancestor::*[self::if or self::unless][count(descendant::method_add_block[command/ident]) = 1] [count(stmts_add/method_add_block/call) = 0] [count(stmts_add/stmts_add) = 0] [count(descendant::*[self::else or self::elsif]) = 0]}) end end rule "FC024", "Consider adding platform equivalents" do tags %w{portability} RHEL = %w{amazon centos redhat scientific oracle} recipe do |ast, filename| next if Pathname.new(filename).basename.to_s == "metadata.rb" metadata_path = Pathname.new( File.join(File.dirname(filename), "..", "metadata.rb")).cleanpath md_platforms = if File.exist?(metadata_path) supported_platforms(read_ast( metadata_path)).map { |p| p[:platform] } else [] end md_platforms = RHEL if md_platforms.empty? ['//method_add_arg[fcall/ident/@value="platform?"]/ arg_paren/args_add_block', "//when"].map do |expr| ast.xpath(expr).map do |whn| platforms = whn.xpath('args_add/ descendant::tstring_content').map do |p| p["value"] end.sort unless platforms.size == 1 || (md_platforms & platforms).empty? whn unless (platforms & RHEL).empty? || ((md_platforms & RHEL) - (platforms & RHEL)).empty? end end.compact end.flatten end end rule "FC025", "Prefer chef_gem to compile-time gem install" do tags %w{style deprecated} recipe do |ast| gem_install = ast.xpath("//stmts_add/assign[method_add_block[command/ident/ @value='gem_package'][do_block/stmts_add/command[ident/@value='action'] [descendant::ident/@value='nothing']]]") gem_install.map do |install| gem_var = install.xpath("var_field/ident/@value") unless ast.xpath("//method_add_arg[call/ var_ref/ident/@value='#{gem_var}'] [arg_paren/descendant::ident/@value='install' or arg_paren/descendant::ident/@value='upgrade']").empty? gem_install end end end end rule "FC026", "Conditional execution block attribute contains only string" do tags %w{correctness} recipe do |ast| find_resources(ast).map { |r| resource_attributes(r) }.map do |resource| [resource["not_if"], resource["only_if"]] end.flatten.compact.select do |condition| condition.respond_to?(:xpath) && !condition.xpath("descendant::string_literal").empty? && !condition.xpath("stmts_add/string_literal").empty? && condition.xpath('descendant::stmts_add[count(ancestor:: string_literal) = 0]').size == 1 end end end rule "FC027", "Resource sets internal attribute" do tags %w{correctness} recipe do |ast| find_resources(ast, type: :service).map do |service| service unless (resource_attributes(service).keys & %w{enabled running}).empty? end.compact end end rule "FC028", "Incorrect #platform? usage" do tags %w{correctness} recipe do |ast| ast.xpath(%q{//*[self::call | self::command_call] [(var_ref|vcall)/ident/@value='node'] [ident/@value="platform?"]}) end end rule "FC029", "No leading cookbook name in recipe metadata" do tags %w{correctness metadata} metadata do |ast, filename| ast.xpath('//command[ident/@value="recipe"]').map do |declared_recipe| next unless declared_recipe.xpath("count(//vcall|//var_ref)").to_i == 0 recipe_name = declared_recipe.xpath('args_add_block/ descendant::tstring_content[1]/@value').to_s unless recipe_name.empty? || recipe_name.split("::").first == cookbook_name(filename.to_s) declared_recipe end end.compact end end rule "FC030", "Cookbook contains debugger breakpoints" do tags %w{annoyances} def pry_bindings(ast) ast.xpath('//call[(vcall|var_ref)/ident/@value="binding"] [ident/@value="pry"]') end recipe { |ast| pry_bindings(ast) } library { |ast| pry_bindings(ast) } metadata { |ast| pry_bindings(ast) } template { |ast| pry_bindings(ast) } end rule "FC031", "Cookbook without metadata file" do tags %w{correctness metadata} cookbook do |filename| if !File.exist?(File.join(filename, "metadata.rb")) [file_match(File.join(filename, "metadata.rb"))] end end end rule "FC032", "Invalid notification timing" do tags %w{correctness notifications} recipe do |ast| valid_timings = if resource_attribute?("file", "notifies_before") [:delayed, :immediate, :before] else [:delayed, :immediate] end find_resources(ast).select do |resource| notifications(resource).any? do |notification| ! valid_timings.include? notification[:timing] end end end end rule "FC033", "Missing template" do tags %w{correctness} recipe do |ast, filename| find_resources(ast, type: :template).reject do |resource| resource_attributes(resource)["local"] || resource_attributes(resource)["cookbook"] end.map do |resource| file = template_file(resource_attributes(resource, return_expressions: true)) { resource: resource, file: file } end.reject do |resource| resource[:file].respond_to?(:xpath) end.select do |resource| template_paths(filename).none? do |path| relative_path = [] Pathname.new(path).ascend do |template_path| relative_path << template_path.basename break if template_path.dirname.dirname.basename.to_s == "templates" end File.join(relative_path.reverse) == resource[:file] end end.map { |resource| resource[:resource] } end end rule "FC034", "Unused template variables" do tags %w{correctness} recipe do |ast, filename| Array(resource_attributes_by_type(ast)["template"]).select do |t| t["variables"] && t["variables"].respond_to?(:xpath) end.map do |resource| all_templates = template_paths(filename) template_paths = all_templates.select do |path| File.basename(path) == template_file(resource) end next unless template_paths.any? passed_vars = resource["variables"].xpath( "symbol/ident/@value").map { |tv| tv.to_s } unused_vars_exist = template_paths.all? do |template_path| begin template_vars = templates_included( all_templates, template_path).map do |template| read_ast(template).xpath("//var_ref/ivar/@value").map do |v| v.to_s.sub(/^@/, "") end end.flatten ! (passed_vars - template_vars).empty? rescue RecursedTooFarError false end end file_match(template_paths.first) if unused_vars_exist end.compact end end rule "FC037", "Invalid notification action" do tags %w{correctness} recipe do |ast| find_resources(ast).select do |resource| notifications(resource).any? do |n| type = case n[:type] when :notifies then n[:resource_type] when :subscribes then resource_type(resource).to_sym end n[:action].size > 0 && !resource_action?(type, n[:action]) end end end end rule "FC038", "Invalid resource action" do tags %w{correctness} recipe do |ast| find_resources(ast).select do |resource| actions = resource_attributes(resource)["action"] if actions.respond_to?(:xpath) actions = actions.xpath('descendant::array/ descendant::symbol/ident/@value') else actions = Array(actions) end actions.reject { |a| a.to_s.empty? }.any? do |action| !resource_action?(resource_type(resource), action) end end end end rule "FC039", "Node method cannot be accessed with key" do tags %w{correctness} recipe do |ast| [{ type: :string, path: "@value" }, { type: :symbol, path: "ident/@value" }].map do |access_type| attribute_access(ast, type: access_type[:type]).select do |att| att_name = att.xpath(access_type[:path]).to_s.to_sym att_name != :tags && chef_node_methods.include?(att_name) end.select do |att| !att.xpath('ancestor::args_add_block[position() = 1] [preceding-sibling::vcall | preceding-sibling::var_ref]').empty? end.select do |att| att_type = att.xpath('ancestor::args_add_block[position() = 1] /../var_ref/ident/@value').to_s ast.xpath("//assign/var_field/ident[@value='#{att_type}']").empty? end end.flatten end end rule "FC040", "Execute resource used to run git commands" do tags %w{style recipe etsy} recipe do |ast| possible_git_commands = %w{ clone fetch pull checkout reset } find_resources(ast, type: "execute").select do |cmd| cmd_str = (resource_attribute(cmd, "command") || resource_name(cmd)).to_s actual_git_commands = cmd_str.scan(/git ([a-z]+)/).map { |c| c.first } (possible_git_commands & actual_git_commands).any? end end end rule "FC041", "Execute resource used to run curl or wget commands" do tags %w{style recipe etsy} recipe do |ast| find_resources(ast, type: "execute").select do |cmd| cmd_str = (resource_attribute(cmd, "command") || resource_name(cmd)).to_s (cmd_str.match(/^curl.*(-o|>|--output).*$/) || cmd_str.include?("wget ")) end end end rule "FC042", "Prefer include_recipe to require_recipe" do tags %w{deprecated} recipe do |ast| ast.xpath('//command[ident/@value="require_recipe"]') end end rule "FC043", "Prefer new notification syntax" do tags %w{style notifications deprecated} recipe do |ast| find_resources(ast).select do |resource| notifications(resource).any? { |notify| notify[:style] == :old } end end end rule "FC044", "Avoid bare attribute keys" do tags %w{style} attributes do |ast| declared = ast.xpath("//descendant::var_field/ident/@value").map do |v| v.to_s end ast.xpath('//assign/*[self::vcall or self::var_ref] [count(child::kw) = 0]/ident').select do |v| local_declared = v.xpath("ancestor::*[self::brace_block or self::do_block] /block_var/descendant::ident/@value").map do |v| v.to_s end (v["value"] != "secure_password") && !(declared + local_declared).uniq.include?(v["value"]) && !v.xpath("ancestor::*[self::brace_block or self::do_block]/block_var/ descendant::ident/@value='#{v['value']}'") end end end rule "FC045", "Metadata does not contain cookbook name" do tags %w{correctness metadata chef12} metadata do |ast, filename| unless ast.xpath('descendant::stmts_add/command/ident/@value="name"') [file_match(filename)] end end cookbook do |filename| if !File.exist?(File.join(filename, "metadata.rb")) [file_match(File.join(filename, "metadata.rb"))] end end end rule "FC046", "Attribute assignment uses assign unless nil" do attributes do |ast| attribute_access(ast).map do |a| a.xpath('ancestor::opassign/op[@value="||="]') end end end rule "FC047", "Attribute assignment does not specify precedence" do tags %w{attributes correctness chef11} recipe do |ast| attribute_access(ast).map do |att| exclude_att_types = '[count(following-sibling::ident[ is_att_type(@value) or @value = "run_state"]) = 0]' att.xpath(%Q{ancestor::assign[*[self::field | self::aref_field] [descendant::*[self::vcall | self::var_ref][ident/@value="node"] #{exclude_att_types}]]}, AttFilter.new) + att.xpath(%Q{ancestor::binary[@value="<<"]/*[position() = 1] [self::aref] [descendant::*[self::vcall | self::var_ref]#{exclude_att_types} /ident/@value="node"]}, AttFilter.new) end end end rule "FC048", "Prefer Mixlib::ShellOut" do tags %w{style processes} recipe do |ast| xstring_literal = ast.xpath("//xstring_literal") next xstring_literal if xstring_literal.any? ast.xpath('//*[self::command or self::fcall]/ident[@value="system"]').select do |x| resource_name = x.xpath("ancestor::do_block/preceding-sibling::command/ident/@value") next false if resource_name.any? && resource_name.all? { |r| resource_attribute?(r.to_s, "system") } next x.xpath('count(following-sibling::args_add_block/descendant::kw[@value="true" or @value="false"]) = 0') end end end rule "FC049", "Role name does not match containing file name" do tags %w{style roles} role do |ast, filename| role_name_specified = field_value(ast, :name) role_name_file = Pathname.new(filename).basename.sub_ext("").to_s if role_name_specified && role_name_specified != role_name_file field(ast, :name) end end end rule "FC050", "Name includes invalid characters" do tags %w{correctness environments roles} def invalid_name(ast) field(ast, :name) unless field_value(ast, :name) =~ /^[a-zA-Z0-9_\-]+$/ end environment { |ast| invalid_name(ast) } role { |ast| invalid_name(ast) } end rule "FC051", "Template partials loop indefinitely" do tags %w{correctness} recipe do |_, filename| cbk_templates = template_paths(filename) cbk_templates.select do |template| begin templates_included(cbk_templates, template) false rescue RecursedTooFarError true end end.map { |t| file_match(t) } end end rule "FC052", 'Metadata uses the unimplemented "suggests" keyword' do tags %w{style metadata} metadata do |ast, filename| ast.xpath(%q{//command[ident/@value='suggests']}) end end rule "FC053", 'Metadata uses the unimplemented "recommends" keyword' do tags %w{style metadata} metadata do |ast, filename| ast.xpath(%q{//command[ident/@value='recommends']}) end end # NOTE: FC054 was yanked and should be considered reserved, do not reuse it rule "FC055", "Ensure maintainer is set in metadata" do tags %w{correctness metadata} metadata do |ast, filename| [file_match(filename)] unless field(ast, "maintainer").any? end end rule "FC056", "Ensure maintainer_email is set in metadata" do tags %w{correctness metadata} metadata do |ast, filename| [file_match(filename)] unless field(ast, "maintainer_email").any? end end rule "FC057", "Library provider does not declare use_inline_resources" do tags %w{correctness} library do |ast, filename| ast.xpath('//const_path_ref/const[@value="LWRPBase"]/..//const[@value="Provider"]/../../..').select do |x| x.xpath('//*[self::vcall or self::var_ref]/ident[@value="use_inline_resources"]').empty? end end end rule "FC058", "Library provider declares use_inline_resources and declares #action_ methods" do tags %w{correctness} library do |ast, filename| ast.xpath('//const_path_ref/const[@value="LWRPBase"]/..//const[@value="Provider"]/../../..').select do |x| x.xpath('//*[self::vcall or self::var_ref]/ident[@value="use_inline_resources"]').length > 0 && x.xpath(%q{//def[ident[contains(@value, 'action_')]]}).length > 0 end end end rule "FC059", "LWRP provider does not declare use_inline_resources" do tags %w{correctness} provider do |ast, filename| use_inline_resources = !ast.xpath('//*[self::vcall or self::var_ref]/ident [@value="use_inline_resources"]').empty? unless use_inline_resources [file_match(filename)] end end end rule "FC060", "LWRP provider declares use_inline_resources and declares #action_ methods" do tags %w{correctness} provider do |ast, filename| use_inline_resources = !ast.xpath('//*[self::vcall or self::var_ref]/ident [@value="use_inline_resources"]').empty? if use_inline_resources ast.xpath(%q{//def[ident[contains(@value, 'action_')]]}) end end end rule "FC061", "Valid cookbook versions are of the form x.y or x.y.z" do tags %w{metadata correctness} metadata do |ast, filename| # matches a version method with a string literal with no interpolation ver = ast.xpath('//command[ident/@value="version"]/args_add_block/args_add/string_literal[not(.//string_embexpr)]//tstring_content/@value') if !ver.empty? && ver.to_s !~ /\A\d+\.\d+(\.\d+)?\z/ [file_match(filename)] end end end rule "FC062", "Cookbook should have version metadata" do tags %w{metadata} metadata do |ast, filename| [file_match(filename)] unless field(ast, "version").any? end end rule "FC063", "Cookbook incorrectly depends on itself" do tags %w{metadata correctness} metadata do |ast, filename| name = cookbook_name(filename) ast.xpath(%Q{//command[ident/@value='depends']/ descendant::tstring_content[@value='#{name}']}) end end rule "FC064", "Ensure issues_url is set in metadata" do tags %w{metadata supermarket chef12} applies_to do |version| version >= gem_version("12.0.0") end metadata do |ast, filename| [file_match(filename)] unless field(ast, "issues_url").any? end end rule "FC065", "Ensure source_url is set in metadata" do tags %w{metadata supermarket chef12} applies_to do |version| version >= gem_version("12.0.0") end metadata do |ast, filename| [file_match(filename)] unless field(ast, "source_url").any? end end foodcritic-8.1.0/lib/foodcritic/output.rb0000644000004100000410000000745413005226016020462 0ustar www-datawww-datarequire "set" module FoodCritic # Default output showing a summary view. class SummaryOutput # Output a summary view only listing the matching rules, file and line # number. # # @param [Review] review The review to output. def output(review) puts review.to_s end end # Display rule matches with surrounding context. class ContextOutput # Output the review showing matching lines with context. # # @param [Review] review The review to output. def output(review) unless review.respond_to?(:warnings) puts review; return end context = 3 print_fn = lambda { |fn| ansi_print(fn, :red, nil, :bold) } print_rule = lambda { |warn| ansi_print(warn, :cyan, nil, :bold) } print_line = lambda { |line| ansi_print(line, nil, :red, :bold) } key_by_file_and_line(review).each do |fn, warnings| print_fn.call fn unless File.exist?(fn) print_rule.call warnings[1].to_a.join("\n") next end # Set of line numbers with warnings warn_lines = warnings.keys.to_set # Moving set of line numbers within the context of our position context_set = (0..context).to_set # The last line number we printed a warning for last_warn = -1 File.open(fn) do |file| file.each do |line| context_set.add(file.lineno + context) context_set.delete(file.lineno - context - 1) # Find the first warning within our context context_warns = context_set & warn_lines next_warn = context_warns.min # We may need to interrupt the trailing context # of a previous warning next_warn = file.lineno if warn_lines.include? file.lineno # Display a warning if next_warn && next_warn > last_warn print_rule.call warnings[next_warn].to_a.join("\n") last_warn = next_warn end # Display any relevant lines if warn_lines.include? file.lineno print "%4i|" % file.lineno print_line.call line.chomp elsif not context_warns.empty? print "%4i|" % file.lineno puts line.chomp end end end end end private # Build a hash lookup by filename and line number for warnings found in the # specified review. # # @param [Review] review The review to convert. # @return [Hash] Nested hashes keyed by filename and line number. def key_by_file_and_line(review) warn_hash = {} review.warnings.each do |warning| filename = Pathname.new(warning.match[:filename]).cleanpath.to_s line_num = warning.match[:line].to_i warn_hash[filename] = {} unless warn_hash.key?(filename) unless warn_hash[filename].key?(line_num) warn_hash[filename][line_num] = Set.new end warn_hash[filename][line_num] << warning.rule end warn_hash end # Print an ANSI escape-code formatted string (and a newline) # # @param text [String] the string to format # @param fg [String] foreground color # @param bg [String] background color # @param attr [String] any formatting options def ansi_print(text, fg, bg = nil, attr = nil) unless STDOUT.tty? puts text return end colors = %w{black red green yellow blue magenta cyan white} attrs = %w{reset bold dim underscore blink reverse hidden} escape = "\033[%sm" fmt = [] fmt << 30 + colors.index(fg.to_s) if fg fmt << 40 + colors.index(bg.to_s) if bg fmt << attrs.index(attr.to_s) if attr if fmt puts "#{escape % fmt.join(';')}#{text}#{escape % 0}" else puts text end end end end foodcritic-8.1.0/lib/foodcritic/rake_task.rb0000644000004100000410000000220013005226016021046 0ustar www-datawww-datarequire "rake" require "rake/tasklib" module FoodCritic module Rake class LintTask < ::Rake::TaskLib attr_accessor :name, :files, :options def initialize(name = :foodcritic) @name = name @files = [Dir.pwd] @options = {} yield self if block_given? define end def define desc "Lint Chef cookbooks" unless ::Rake.application.last_description task(name) do puts "Starting Foodcritic linting..." result = FoodCritic::Linter.new.check(default_options.merge(options)) printer = options[:context] ? ContextOutput.new : SummaryOutput.new printer.output(result) if result.warnings.any? abort if result.failed? puts "Completed!" end end private def default_options { fail_tags: ["correctness"], # differs to default cmd-line behaviour cookbook_paths: files, exclude_paths: ["test/**/*", "spec/**/*", "features/**/*"], context: false, chef_version: FoodCritic::Linter::DEFAULT_CHEF_VERSION, } end end end end foodcritic-8.1.0/lib/foodcritic/error_checker.rb0000644000004100000410000000127713005226016021734 0ustar www-datawww-datamodule FoodCritic # Expose if any errors are found in parsing class ErrorChecker < Ripper::SexpBuilder # Create a new instance of ErrorChecker # # @see Ripper::SexpBuilder#initialize def initialize(*args) super(*args) @found_error = false end # Was an error encountered during parsing? def error? @found_error end # Register with all available error handlers. def self.register_error_handlers error_methods = SexpBuilder.public_instance_methods.grep(/^on_.*_error$/) error_methods.sort.each do |err_meth| define_method(err_meth) { |*| @found_error = true } end end self.register_error_handlers end end foodcritic-8.1.0/lib/foodcritic/api.rb0000644000004100000410000005177013005226016017673 0ustar www-datawww-datarequire "nokogiri" require "rufus-lru" module FoodCritic # Helper methods that form part of the Rules DSL. module Api include FoodCritic::AST include FoodCritic::XML include FoodCritic::Chef include FoodCritic::Notifications class RecursedTooFarError < StandardError; end # Find attribute access by type. def attribute_access(ast, options = {}) options = { type: :any, ignore_calls: false }.merge!(options) return [] unless ast.respond_to?(:xpath) unless [:any, :string, :symbol, :vivified].include?(options[:type]) raise ArgumentError, "Node type not recognised" end case options[:type] when :any then vivified_attribute_access(ast, options) + standard_attribute_access(ast, options) when :vivified then vivified_attribute_access(ast, options) else standard_attribute_access(ast, options) end end # Does the specified recipe check for Chef Solo? def checks_for_chef_solo?(ast) raise_unless_xpath!(ast) # TODO: This expression is too loose, but also will fail to match other # types of conditionals. (!ast.xpath(%q{//*[self::if or self::ifop or self::unless]/ *[self::aref or child::aref or self::call] [count(descendant::const[@value = 'Chef' or @value = 'Config']) = 2 and ( count(descendant::ident[@value='solo']) > 0 or count(descendant::tstring_content[@value='solo']) > 0 ) ]}).empty?) || ast.xpath('//if_mod[return][aref/descendant::ident/@value="solo"]/aref/ const_path_ref/descendant::const').map do |c| c["value"] end == %w{Chef Config} end # Is the # [chef-solo-search library](https://github.com/edelight/chef-solo-search) # available? def chef_solo_search_supported?(recipe_path) return false if recipe_path.nil? || !File.exist?(recipe_path) # Look for the chef-solo-search library. # # TODO: This will not work if the cookbook that contains the library # is not under the same `cookbook_path` as the cookbook being checked. cbk_tree_path = Pathname.new(File.join(recipe_path, "../../..")) search_libs = Dir[File.join(cbk_tree_path.realpath, "*/libraries/search.rb")] # True if any of the candidate library files match the signature: # # class Chef # def search search_libs.any? do |lib| !read_ast(lib).xpath(%q{//class[count(descendant::const[@value='Chef'] ) = 1]/descendant::def/ident[@value='search']}).empty? end end # Support function to retrieve a metadata field def metadata_field(file, field) until (file.split(File::SEPARATOR) & standard_cookbook_subdirs).empty? file = File.absolute_path(File.dirname(file.to_s)) end file = File.dirname(file) unless File.extname(file).empty? md_path = File.join(file, "metadata.rb") if File.exist?(md_path) value = read_ast(md_path).xpath("//stmts_add/ command[ident/@value='#{field}']/ descendant::tstring_content/@value").to_s raise "Cant read #{field} from #{md_path}" if value.to_s.empty? return value else raise "Cant find #{md_path}" end end # The name of the cookbook containing the specified file. def cookbook_name(file) raise ArgumentError, "File cannot be nil or empty" if file.to_s.empty? # Name is a special case as we want to fallback to the cookbook directory # name if metadata_field fails begin metadata_field(file, "name") rescue RuntimeError until (file.split(File::SEPARATOR) & standard_cookbook_subdirs).empty? file = File.absolute_path(File.dirname(file.to_s)) end file = File.dirname(file) unless File.extname(file).empty? File.basename(file) end end # The maintainer of the cookbook containing the specified file. def cookbook_maintainer(file) raise ArgumentError, "File cannot be nil or empty" if file.to_s.empty? metadata_field(file, "maintainer") end # The maintainer email of the cookbook containing the specified file. def cookbook_maintainer_email(file) raise ArgumentError, "File cannot be nil or empty" if file.to_s.empty? metadata_field(file, "maintainer_email") end # The dependencies declared in cookbook metadata. def declared_dependencies(ast) raise_unless_xpath!(ast) # String literals. # # depends 'foo' deps = ast.xpath(%q{//command[ident/@value='depends']/ descendant::args_add/descendant::tstring_content[1]}) # Quoted word arrays are also common. # # %w{foo bar baz}.each do |cbk| # depends cbk # end deps = deps.to_a + word_list_values(ast, "//command[ident/@value='depends']") deps.uniq.map { |dep| dep["value"].strip } end # The key / value pair in an environment or role ruby file def field(ast, field_name) if field_name.nil? || field_name.to_s.empty? raise ArgumentError, "Field name cannot be nil or empty" end ast.xpath("//command[ident/@value='#{field_name}']") end # The value for a specific key in an environment or role ruby file def field_value(ast, field_name) field(ast, field_name).xpath('args_add_block/descendant::tstring_content [count(ancestor::args_add) = 1][count(ancestor::string_add) = 1] /@value').map { |a| a.to_s }.last end # Create a match for a specified file. Use this if the presence of the file # triggers the warning rather than content. def file_match(file) raise ArgumentError, "Filename cannot be nil" if file.nil? { filename: file, matched: file, line: 1, column: 1 } end # Find Chef resources of the specified type. # TODO: Include blockless resources # # These are equivalent: # # find_resources(ast) # find_resources(ast, :type => :any) # # Restrict to a specific type of resource: # # find_resources(ast, :type => :service) # def find_resources(ast, options = {}) options = { type: :any }.merge!(options) return [] unless ast.respond_to?(:xpath) scope_type = "" scope_type = "[@value='#{options[:type]}']" unless options[:type] == :any # TODO: Include nested resources (provider actions) no_actions = "[command/ident/@value != 'action']" ast.xpath("//method_add_block[command/ident#{scope_type}]#{no_actions}") end # Helper to return a comparable version for a string. def gem_version(version) Gem::Version.create(version) end # Retrieve the recipes that are included within the given recipe AST. # # These two usages are equivalent: # # included_recipes(ast) # included_recipes(ast, :with_partial_names => true) # def included_recipes(ast, options = { with_partial_names: true }) raise_unless_xpath!(ast) filter = ["[count(descendant::args_add) = 1]"] # If `:with_partial_names` is false then we won't include the string # literal portions of any string that has an embedded expression. unless options[:with_partial_names] filter << "[count(descendant::string_embexpr) = 0]" end string_desc = '[descendant::args_add/string_literal]/ descendant::tstring_content' included = ast.xpath([ "//command[ident/@value = 'include_recipe']", "//fcall[ident/@value = 'include_recipe']/ following-sibling::arg_paren", ].map do |recipe_include| recipe_include + filter.join + string_desc end.join(" | ")) # Hash keyed by recipe name with matched nodes. included.inject(Hash.new([])) { |h, i| h[i["value"]] += [i]; h } end # Searches performed by the specified recipe that are literal strings. # Searches with a query formed from a subexpression will be ignored. def literal_searches(ast) return [] unless ast.respond_to?(:xpath) ast.xpath("//method_add_arg[fcall/ident/@value = 'search' and count(descendant::string_embexpr) = 0]/descendant::tstring_content") end # Create a match from the specified node. def match(node) raise_unless_xpath!(node) pos = node.xpath("descendant::pos").first return nil if pos.nil? { matched: node.respond_to?(:name) ? node.name : "", line: pos["line"].to_i, column: pos["column"].to_i } end # Read the AST for the given Ruby source file def read_ast(file) @ast_cache ||= Rufus::Lru::Hash.new(5) if @ast_cache.include?(file) @ast_cache[file] else @ast_cache[file] = uncached_read_ast(file) end end # Retrieve a single-valued attribute from the specified resource. def resource_attribute(resource, name) raise ArgumentError, "Attribute name cannot be empty" if name.empty? resource_attributes(resource)[name.to_s] end # Retrieve all attributes from the specified resource. def resource_attributes(resource, options = {}) atts = {} name = resource_name(resource, options) atts[:name] = name unless name.empty? atts.merge!(normal_attributes(resource, options)) atts.merge!(block_attributes(resource)) atts end # Resources keyed by type, with an array of matching nodes for each. def resource_attributes_by_type(ast) result = {} resources_by_type(ast).each do |type, resources| result[type] = resources.map do |resource| resource_attributes(resource) end end result end # Retrieve the name attribute associated with the specified resource. def resource_name(resource, options = {}) raise_unless_xpath!(resource) options = { return_expressions: false }.merge(options) if options[:return_expressions] name = resource.xpath("command/args_add_block") if name.xpath("descendant::string_add").size == 1 && name.xpath("descendant::string_literal").size == 1 && name.xpath( "descendant::*[self::call or self::string_embexpr]").empty? name.xpath("descendant::tstring_content/@value").to_s else name end else # Preserve existing behaviour resource.xpath("string(command//tstring_content/@value)") end end # Resources in an AST, keyed by type. def resources_by_type(ast) raise_unless_xpath!(ast) result = Hash.new { |hash, key| hash[key] = Array.new } find_resources(ast).each do |resource| result[resource_type(resource)] << resource end result end # Return the type, e.g. 'package' for a given resource def resource_type(resource) raise_unless_xpath!(resource) type = resource.xpath("string(command/ident/@value)") if type.empty? raise ArgumentError, "Provided AST node is not a resource" end type end # Does the provided string look like ruby code? def ruby_code?(str) str = str.to_s return false if str.empty? checker = FoodCritic::ErrorChecker.new(str) checker.parse !checker.error? end # Searches performed by the provided AST. def searches(ast) return [] unless ast.respond_to?(:xpath) ast.xpath("//fcall/ident[@value = 'search']") end # The list of standard cookbook sub-directories. def standard_cookbook_subdirs %w{attributes definitions files libraries providers recipes resources templates} end # Platforms declared as supported in cookbook metadata def supported_platforms(ast) platforms = ast.xpath('//command[ident/@value="supports"]/ descendant::*[self::string_literal or self::symbol_literal] [position() = 1] [self::symbol_literal or count(descendant::string_add) = 1]/ descendant::*[self::tstring_content | self::ident]') platforms = platforms.to_a + word_list_values(ast, "//command[ident/@value='supports']") platforms.map do |platform| versions = platform.xpath('ancestor::args_add[position() > 1]/ string_literal/descendant::tstring_content/@value').map { |v| v.to_s } { platform: platform["value"], versions: versions } end.sort { |a, b| a[:platform] <=> b[:platform] } end # Template filename def template_file(resource) if resource["source"] resource["source"] elsif resource[:name] if resource[:name].respond_to?(:xpath) resource[:name] else "#{File.basename(resource[:name])}.erb" end end end def templates_included(all_templates, template_path, depth = 1) raise RecursedTooFarError.new(template_path) if depth > 10 partials = read_ast(template_path).xpath('//*[self::command or child::fcall][descendant::ident/@value="render"]//args_add/ string_literal//tstring_content/@value').map { |p| p.to_s } Array(template_path) + partials.map do |included_partial| partial_path = Array(all_templates).find do |path| (Pathname.new(template_path).dirname + included_partial).to_s == path end if partial_path Array(partial_path) + templates_included(all_templates, partial_path, depth + 1) end end.flatten.uniq.compact end # Templates in the current cookbook def template_paths(recipe_path) Dir.glob(Pathname.new(recipe_path).dirname.dirname + "templates" + "**/*", File::FNM_DOTMATCH).select do |path| File.file?(path) end.reject do |path| File.basename(path) == ".DS_Store" || File.extname(path) == ".swp" end end private def block_attributes(resource) # The attribute value may alternatively be a block, such as the meta # conditionals `not_if` and `only_if`. atts = {} resource.xpath("do_block/descendant::method_add_block[ count(ancestor::do_block) = 1][brace_block | do_block]").each do |batt| att_name = batt.xpath("string(method_add_arg/fcall/ident/@value)") if att_name && !att_name.empty? && batt.children.length > 1 atts[att_name] = batt.children[1] end end atts end def block_depth(resource) resource.path.split("/").group_by { |e| e }["method_add_block"].size end # Recurse the nested arrays provided by Ripper to create a tree we can more # easily apply expressions to. def build_xml(node, doc = nil, xml_node = nil) doc, xml_node = xml_document(doc, xml_node) if node.respond_to?(:each) node.each do |child| if position_node?(child) xml_position_node(doc, xml_node, child) else if ast_node_has_children?(child) # The AST structure is different for hashes so we have to treat # them separately. if ast_hash_node?(child) xml_hash_node(doc, xml_node, child) else xml_array_node(doc, xml_node, child) end else xml_node["value"] = child.to_s unless child.nil? end end end end xml_node end def extract_attribute_value(att, options = {}) if !att.xpath("args_add_block[count(descendant::args_add)>1]").empty? att.xpath("args_add_block").first elsif !att.xpath('args_add_block/args_add/ var_ref/kw[@value="true" or @value="false"]').empty? att.xpath('string(args_add_block/args_add/ var_ref/kw/@value)') == "true" elsif !att.xpath("descendant::assoc_new").empty? att.xpath("descendant::assoc_new") elsif !att.xpath("descendant::int").empty? att.xpath("descendant::int/@value").to_s elsif att.xpath("descendant::symbol").empty? if options[:return_expressions] && (att.xpath("descendant::string_add").size != 1 || att.xpath('descendant::*[self::call or self::string_embexpr]').any?) att else att.xpath("string(descendant::tstring_content/@value)") end else att.xpath("string(descendant::symbol/ident/@value)").to_sym end end def ignore_attributes_xpath(ignores) Array(ignores).map do |ignore| "[count(descendant::*[@value='#{ignore}']) = 0]" end.join end def node_method?(meth, cookbook_dir) chef_dsl_methods.include?(meth) || patched_node_method?(meth, cookbook_dir) end def normal_attributes(resource, options = {}) atts = {} resource.xpath('do_block/descendant::*[self::command or self::method_add_arg][count(ancestor::do_block) >= 1]').each do |att| blocks = att.xpath("ancestor::method_add_block/method_add_arg/fcall") next if blocks.any? { |a| block_depth(a) > block_depth(resource) } att_name = att.xpath('string(ident/@value | fcall/ident[@value="variables"]/@value)') unless att_name.empty? atts[att_name] = extract_attribute_value(att, options) end end atts end def patched_node_method?(meth, cookbook_dir) return false if cookbook_dir.nil? || !Dir.exist?(cookbook_dir) # TODO: Modify this to work with multiple cookbook paths cbk_tree_path = Pathname.new(File.join(cookbook_dir, "..")) libs = Dir[File.join(cbk_tree_path.realpath, "*/libraries/*.rb")] libs.any? do |lib| !read_ast(lib).xpath(%Q{//class[count(descendant::const[@value='Chef']) > 0][count(descendant::const[@value='Node']) > 0]/descendant::def/ ident[@value='#{meth}']}).empty? end end def raise_unless_xpath!(ast) unless ast.respond_to?(:xpath) raise ArgumentError, "AST must support #xpath" end end def uncached_read_ast(file) source = if file.to_s.split(File::SEPARATOR).include?("templates") template_expressions_only(file) else File.read(file).encode("utf-8", "binary", :undef => :replace) end build_xml(Ripper::SexpBuilder.new(source).parse) end # XPath custom function class AttFilter def is_att_type(value) return [] unless value.respond_to?(:select) value.select do |n| %w{ automatic_attrs default default! default_unless force_default force_default! force_override force_override! node normal normal! normal_unless override override! override_unless set set_unless }.include?(n.to_s) end end end def standard_attribute_access(ast, options) if options[:type] == :any [:string, :symbol].map do |type| standard_attribute_access(ast, options.merge(type: type)) end.inject(:+) else type = if options[:type] == :string "tstring_content" else "*[self::symbol or self::dyna_symbol]" end expr = "//*[self::aref_field or self::aref][count(method_add_arg) = 0]" expr += '[count(is_att_type(descendant::var_ref/ident/@value)) = count(descendant::var_ref/ident/@value)]' expr += "[is_att_type(descendant::ident" expr += "[not(ancestor::aref/call)]" if options[:ignore_calls] expr += "/@value)]" expr += ignore_attributes_xpath(options[:ignore]) expr += "/descendant::#{type}" if options[:type] == :string expr += "[count(ancestor::dyna_symbol) = 0]" end ast.xpath(expr, AttFilter.new).sort end end def template_expressions_only(file) exprs = Template::ExpressionExtractor.new.extract( File.read(file).encode("utf-8", "binary", :undef => :replace) ) lines = Array.new(exprs.map { |e| e[:line] }.max || 0, "") exprs.each do |e| lines[e[:line] - 1] += ";" unless lines[e[:line] - 1].empty? lines[e[:line] - 1] += e[:code] end lines.join("\n") end def vivified_attribute_access(ast, options = {}) calls = ast.xpath(%Q{//*[self::call or self::field] [is_att_type(vcall/ident/@value) or is_att_type(var_ref/ident/@value)] #{ignore_attributes_xpath(options[:ignore])} [@value='.'][count(following-sibling::arg_paren) = 0]}, AttFilter.new) calls.select do |call| call.xpath("aref/args_add_block").size == 0 && (call.xpath("descendant::ident").size > 1 && !node_method?(call.xpath("ident/@value").to_s.to_sym, options[:cookbook_dir])) end.sort end def word_list_values(ast, xpath) var_ref = ast.xpath("#{xpath}/descendant::var_ref/ident") if var_ref.empty? [] else ast.xpath(%Q{descendant::block_var/params/ ident#{var_ref.first['value']}/ancestor::method_add_block/call/ descendant::tstring_content}) end end end end foodcritic-8.1.0/lib/foodcritic/version.rb0000644000004100000410000000012013005226016020566 0ustar www-datawww-datamodule FoodCritic # The current version of foodcritic VERSION = "8.1.0" end foodcritic-8.1.0/lib/foodcritic/notifications.rb0000644000004100000410000001272513005226016021770 0ustar www-datawww-datamodule FoodCritic # This module contains the logic for the parsing of # [Chef Notifications] # (http://docs.chef.io/resource_common.html#notifications). module Notifications # Extracts notification details from the provided AST, returning an # array of notification hashes. # # template "/etc/www/configures-apache.conf" do # notifies :restart, "service[apache]" # end # # => [{:resource_name=>"apache", # :resource_type=>:service, # :type=>:notifies, # :style=>:new, # :action=>:restart, # :timing=>:delayed}] # def notifications(ast) # Sanity check the AST provided. return [] unless ast.respond_to?(:xpath) # We are mapping each `notifies` or `subscribes` line in the provided # AST to a Hash with the extracted details. notification_nodes(ast).map do |notify| # Chef supports two styles of notification. notified_resource = if new_style_notification?(notify) # `notifies :restart, "service[foo]"` new_style_notification(notify) else # `notifies :restart, resources(service: "foo")` old_style_notification(notify) end # Ignore if the notification was not parsed next unless notified_resource # Now merge the extract notification details with the attributes # that are common to both styles of notification. notified_resource.merge( { # The `:type` of notification: `:subscribes` or `:notifies`. type: notification_type(notify), # The `:style` of notification: `:new` or `:old`. style: new_style_notification?(notify) ? :new : :old, # The target resource action. action: notification_action(notify), # The notification timing: `:before`, `:immediate` or `:delayed`. timing: notification_timing(notify), } ) end.compact end private # Extract the `:resource_name` and `:resource_type` from a new-style # notification. def new_style_notification(notify) # Given `notifies :restart, "service[foo]"` the target is the # `"service[foo]"` string portion. target_path = 'args_add_block/args_add/descendant:: tstring_content[count(ancestor::dyna_symbol) = 0]/@value' target = notify.xpath("arg_paren/#{target_path} | #{target_path}").to_s # Test the target string against the standard syntax for a new-style # notification: `resource_type[resource_name]`. match = target.match(/^([^\[]+)\[(.*)\]$/) return nil unless match # Convert the captured resource type and name to symbols. resource_type, resource_name = match.captures.tap { |m| m[0] = m[0].to_sym } # Normally the `resource_name` will be a simple string. However in the # case where it has an embedded sub-expression then we will return the # AST to the caller to handle. if notify.xpath("descendant::string_embexpr").empty? return nil if resource_name.empty? else resource_name = notify.xpath("args_add_block/args_add/string_literal") end { resource_name: resource_name, resource_type: resource_type } end # Extract the `:resource_name` and `:resource_type` from an old-style # notification. def old_style_notification(notify) resources = resource_hash_references(notify) resource_type = resources.xpath("symbol[1]/ident/@value").to_s.to_sym if resource_type.empty? resource_type = resources.xpath("label/@value").to_s.chop.to_sym end resource_name = resources.xpath('string_add[1][count(../ descendant::string_add) = 1]/tstring_content/@value').to_s resource_name = resources if resource_name.empty? { resource_name: resource_name, resource_type: resource_type } end def notification_timing(notify) # The notification timing should be the last symbol # on the notifies element. timing = notify.xpath('args_add_block/args_add/symbol_literal[last()]/ symbol/ident[1]/@value') if timing.empty? # "By default, notifications are :delayed" :delayed else case timing.first.to_s.to_sym # Both forms are valid, but we return `:immediate` for both to avoid # the caller having to recognise both. when :immediately, :immediate then :immediate # Pass the timing through unmodified if we don't recognise it. else timing.first.to_s.to_sym end end end def new_style_notification?(notify) resource_hash_references(notify).empty? end def notification_action(notify) notify.xpath('descendant::symbol[1]/ident/@value | descendant::dyna_symbol[1]/xstring_add/ tstring_content/@value').first.to_s.to_sym end def notification_nodes(ast, &block) type_path = '[ident/@value="notifies" or ident/@value="subscribes"]' ast.xpath("descendant::command#{type_path} | descendant::method_add_arg[fcall#{type_path}]") end def notification_type(notify) notify.xpath("ident/@value[1] | fcall/ident/@value[1]").to_s.to_sym end def resource_hash_references(ast) ast.xpath('descendant::method_add_arg[fcall/ident/ @value="resources"]/descendant::assoc_new') end end end foodcritic-8.1.0/lib/foodcritic/linter.rb0000644000004100000410000002267213005226016020416 0ustar www-datawww-datarequire "optparse" require "ripper" require "set" module FoodCritic # The main entry point for linting your Chef cookbooks. class Linter include FoodCritic::Api # The default version that will be used to determine relevant rules. This # can be over-ridden at the command line with the `--chef-version` option. DEFAULT_CHEF_VERSION = "12.14.89" attr_reader :chef_version # Perform a lint check. This method is intended for use by the command-line # wrapper. If you are programatically using foodcritic you should use # `#check` below. def self.run(cmd_line) # The first item is the string output, the second is exit code. return [cmd_line.help, 0] if cmd_line.show_help? return [cmd_line.version, 0] if cmd_line.show_version? if !cmd_line.valid_grammar? [cmd_line.help, 4] elsif cmd_line.list_rules? listing = FoodCritic::Linter.new.list(cmd_line.options) [listing, 0] elsif cmd_line.valid_paths? review = FoodCritic::Linter.new.check(cmd_line.options) [review, review.failed? ? 3 : 0] else [cmd_line.help, 2] end end # List the rules that are currently in effect. # # The `options` are a hash where the valid keys are: # # * `:include_rules` - Paths to additional rules to apply # * `:search_gems - If true then search for custom rules in installed gems. # * `:tags` - The tags to filter rules based on def list(options = {}) options = setup_defaults(options) @options = options load_rules if options[:tags].any? @rules = active_rules(options[:tags]) end RuleList.new(@rules) end # Review the cookbooks at the provided path, identifying potential # improvements. # # The `options` are a hash where the valid keys are: # # * `:cookbook_paths` - Cookbook paths to lint # * `:role_paths` - Role paths to lint # * `:include_rules` - Paths to additional rules to apply # * `:search_gems - If true then search for custom rules in installed gems. # * `:tags` - The tags to filter rules based on # * `:fail_tags` - The tags to fail the build on # * `:exclude_paths` - Paths to exclude from linting # def check(options = {}) options = setup_defaults(options) @options = options @chef_version = options[:chef_version] || DEFAULT_CHEF_VERSION warnings = []; last_dir = nil; matched_rule_tags = Set.new load_rules paths = specified_paths!(options) # Loop through each file to be processed and apply the rules files = files_to_process(paths) if options[:progress] puts "Checking #{files.count} files" end files.each do |p| relevant_tags = if options[:tags].any? options[:tags] else cookbook_tags(p[:filename]) end progress = "." active_rules(relevant_tags).each do |rule| state = { path_type: p[:path_type], file: p[:filename], ast: read_ast(p[:filename]), rule: rule, last_dir: last_dir, } matches = if p[:path_type] == :cookbook cookbook_matches(state) else other_matches(state) end matches = remove_ignored(matches, state[:rule], state[:file]) progress = "x" if matches.any? # Convert the matches into warnings matches.each do |match| warnings << Warning.new(state[:rule], { filename: state[:file] }.merge(match), options) matched_rule_tags << state[:rule].tags end end putc progress if options[:progress] last_dir = cookbook_dir(p[:filename]) end puts "" if options[:progress] Review.new(paths, warnings) end def cookbook_matches(state) cbk_matches = matches(state[:rule].recipe, state[:ast], state[:file]) if dsl_method_for_file(state[:file]) cbk_matches += matches(state[:rule].send( dsl_method_for_file(state[:file])), state[:ast], state[:file]) end per_cookbook_rules(state[:last_dir], state[:file]) do if File.basename(state[:file]) == "metadata.rb" cbk_matches += matches( state[:rule].metadata, state[:ast], state[:file]) end cbk_matches += matches( state[:rule].cookbook, cookbook_dir(state[:file])) end cbk_matches end def other_matches(state) matches(state[:rule].send(state[:path_type]), state[:ast], state[:file]) end # Load the rules from the (fairly unnecessary) DSL. def load_rules load_rules!(@options) unless defined? @rules end def load_rules!(options) rule_files = [File.join(File.dirname(__FILE__), "rules.rb")] rule_files << options[:include_rules] rule_files << rule_files_in_gems if options[:search_gems] @rules = RuleDsl.load(rule_files.flatten.compact, chef_version) end private def rule_files_in_gems Gem::Specification.latest_specs(true).map do |spec| spec.matches_for_glob("foodcritic/rules/**/*.rb") end.flatten end def remove_ignored(matches, rule, file) matches.reject do |m| matched_file = m[:filename] || file (line = m[:line]) && File.exist?(matched_file) && !File.directory?(matched_file) && ignore_line_match?(File.readlines(matched_file)[line - 1], rule) end end def ignore_line_match?(line, rule) ignores = line.to_s[/\s+#\s*(.*)/, 1] if ignores && ignores.include?("~") !rule.matches_tags?(ignores.split(/[ ,]/)) else false end rescue false end # Some rules are version specific. def applies_to_version?(rule, version) return true unless version rule.applies_to.yield(Gem::Version.create(version)) end def cookbook_tags(file) tags = [] fc_file = "#{cookbook_dir(file)}/.foodcritic" if File.exist? fc_file begin tag_text = File.read fc_file tags = tag_text.split(/\s/) rescue Errno::EACCES end end tags end def active_rules(tags) @rules.select do |rule| rule.matches_tags?(tags) && applies_to_version?(rule, chef_version) end end def cookbook_dir(file) Pathname.new(File.join(File.dirname(file), case File.basename(file) when "metadata.rb" then "" when /\.erb$/ then "../.." else ".." end)).cleanpath end def dsl_method_for_file(file) dir_mapping = { "attributes" => :attributes, "libraries" => :library, "providers" => :provider, "resources" => :resource, "templates" => :template, } if file.end_with? ".erb" dir_mapping[File.basename(File.dirname(File.dirname(file)))] else dir_mapping[File.basename(File.dirname(file))] end end # Return the files within a cookbook tree that we are interested in trying # to match rules against. def files_to_process(paths) paths.reject { |type, _| type == :exclude }.map do |path_type, dirs| dirs.map do |dir| exclusions = [] unless paths[:exclude].empty? exclusions = Dir.glob(paths[:exclude].map do |p| File.join(dir, p, "**/**") end) end if File.directory?(dir) glob = if path_type == :cookbook "{metadata.rb,{attributes,definitions,libraries,"\ "providers,recipes,resources}/*.rb,templates/*/*.erb}" else "*.rb" end (Dir.glob(File.join(dir, glob)) + Dir.glob(File.join(dir, "*/#{glob}")) - exclusions) else dir unless exclusions.include?(dir) end end.compact.flatten.map do |filename| { filename: filename, path_type: path_type } end end.flatten end # Invoke the DSL method with the provided parameters. def matches(match_method, *params) return [] unless match_method.respond_to?(:yield) matches = match_method.yield(*params) return [] unless matches.respond_to?(:each) # We convert Nokogiri nodes to matches transparently matches.map do |m| if m.respond_to?(:node_name) match(m) elsif m.respond_to?(:xpath) m.to_a.map { |m| match(m) } else m end end.flatten end def per_cookbook_rules(last_dir, file) yield if last_dir != cookbook_dir(file) end def specified_paths!(options) paths = Hash[options.map do |key, value| [key, Array(value)] if key.to_s.end_with?("paths") end.compact] unless paths.find { |k, v| k != :exclude_paths && !v.empty? } raise ArgumentError, "A cookbook path or role path must be specified" end Hash[paths.map do |key, value| [key.to_s.sub(/_paths$/, "").to_sym, value] end] end def setup_defaults(options) { tags: [], fail_tags: [], include_rules: [], exclude_paths: [], cookbook_paths: [], role_paths: [] }.merge(options) end end end foodcritic-8.1.0/lib/foodcritic/command_line.rb0000644000004100000410000001370513005226016021543 0ustar www-datawww-datamodule FoodCritic # Command line parsing. class CommandLine # Create a new instance of CommandLine # # @param [Array] args The command line arguments def initialize(args) @args = args @original_args = args.dup @options = { fail_tags: [], tags: [], include_rules: [], cookbook_paths: [], role_paths: [], environment_paths: [], exclude_paths: [], } @parser = OptionParser.new do |opts| opts.banner = "foodcritic [cookbook_paths]" opts.on("-t", "--tags TAGS", "Check against (or exclude ~) rules with the "\ "specified tags.") do |t| @options[:tags] << t end opts.on("-l", "--list", "List all enabled rules and their descriptions.") do |t| @options[:list] = t end opts.on("-f", "--epic-fail TAGS", "Fail the build based on tags. Use 'any' to fail "\ "on all warnings.") do |t| @options[:fail_tags] << t end opts.on("-c", "--chef-version VERSION", "Only check against rules valid for this version "\ "of Chef.") do |c| @options[:chef_version] = c end opts.on("-B", "--cookbook-path PATH", "Cookbook path(s) to check.") do |b| @options[:cookbook_paths] << b end opts.on("-C", "--[no-]context", "Show lines matched against rather than the "\ "default summary.") do |c| @options[:context] = c end opts.on("-E", "--environment-path PATH", "Environment path(s) to check.") do |e| @options[:environment_paths] << e end opts.on("-I", "--include PATH", "Additional rule file path(s) to load.") do |i| @options[:include_rules] << i end opts.on("-G", "--search-gems", "Search rubygems for rule files with the path "\ "foodcritic/rules/**/*.rb") do |g| @options[:search_gems] = true end opts.on("-P", "--progress", "Show progress of files being checked") do @options[:progress] = true end opts.on("-R", "--role-path PATH", "Role path(s) to check.") do |r| @options[:role_paths] << r end opts.on("-S", "--search-grammar PATH", "Specify grammar to use when validating search syntax.") do |s| @options[:search_grammar] = s end opts.on("-V", "--version", "Display the foodcritic version.") do |v| @options[:version] = true end opts.on("-X", "--exclude PATH", "Exclude path(s) from being linted. PATH is relative to the cookbook, not an absolute PATH") do |e| options[:exclude_paths] << e end end # -v is not implemented but OptionParser gives the Foodcritic's version # if that flag is passed if args.include? "-v" help else begin @parser.parse!(args) unless show_help? rescue OptionParser::InvalidOption => e e.recover args end end end # Show the command help to the end user? # # @return [Boolean] True if help should be shown. def show_help? @args.length == 1 && @args.first == "--help" end # The help text. # # @return [String] Help text describing the command-line options available. def help @parser.help end # Show the current version to the end user? # # @return [Boolean] True if the version should be shown. def show_version? @options.key?(:version) end # Just list enabled rules, don't actually run a lint check? # # @return [Boolean] True if a rule listing is requested. def list_rules? @options.key?(:list) end # The version string. # # @return [String] Current installed version. def version "foodcritic #{FoodCritic::VERSION}" end # If the paths provided are valid # # @return [Boolean] True if the paths exist. def valid_paths? paths = options[:cookbook_paths] + options[:role_paths] + options[:environment_paths] paths.any? && paths.all? { |path| File.exist?(path) } end # Is the search grammar specified valid? # # @return [Boolean] True if the grammar has not been provided or can be # loaded. def valid_grammar? return true unless options.key?(:search_grammar) return false unless File.exist?(options[:search_grammar]) search = FoodCritic::Chef::Search.new search.create_parser([options[:search_grammar]]) search.parser? end # The cookbook paths to check # # @return [Array] Path(s) to the cookbook(s) being checked. def cookbook_paths @args + Array(@options[:cookbook_paths]) end # The role paths to check # # @return [Array] Path(s) to the role directories being checked. def role_paths Array(@options[:role_paths]) end # The environment paths to check # # @return [Array] Path(s) to the environment directories checked. def environment_paths Array(@options[:environment_paths]) end # If matches should be shown with context rather than the default summary # display. # # @return [Boolean] True if matches should be shown with context. def show_context? @options[:context] end # Parsed command-line options # # @return [Hash] The parsed command-line options. def options original_options.merge( { cookbook_paths: cookbook_paths, role_paths: role_paths, environment_paths: environment_paths, } ) end # The original command-line options # # @return [Hash] The original command-line options. def original_options @options end end end foodcritic-8.1.0/lib/foodcritic/chef.rb0000644000004100000410000000726513005226016020027 0ustar www-datawww-datamodule FoodCritic # Encapsulates functions that previously were calls to the Chef gem. module Chef def chef_dsl_methods load_metadata @dsl_metadata[:dsl_methods].map(&:to_sym) end def chef_node_methods load_metadata @dsl_metadata[:node_methods].map(&:to_sym) end # Is the specified action valid for the type of resource? def resource_action?(resource_type, action) resource_check?(:actions, resource_type, action) end # Is the specified attribute valid for the type of resource? def resource_attribute?(resource_type, attribute_name) resource_check?(:attributes, resource_type, attribute_name) end # Is this a valid Lucene query? def valid_query?(query) raise ArgumentError, "Query cannot be nil or empty" if query.to_s.empty? # Attempt to create a search query parser search = FoodCritic::Chef::Search.new search.create_parser(search.chef_search_grammars) if search.parser? search.parser.parse(query.to_s) else # If we didn't manage to get a parser then we can't know if the query # is valid or not. true end end private # To avoid the runtime hit of loading the Chef gem and its dependencies # we load the DSL metadata from a JSON file shipped with our gem. # # The DSL metadata doesn't necessarily reflect the version of Chef in the # local user gemset. def load_metadata version = if self.respond_to?(:chef_version) chef_version else Linter::DEFAULT_CHEF_VERSION end metadata_path = [version, version.sub(/\.[a-z].*/, ""), Linter::DEFAULT_CHEF_VERSION].map do |version| metadata_path(version) end.find { |m| File.exist?(m) } @dsl_metadata ||= Yajl::Parser.parse(IO.read(metadata_path), symbolize_keys: true) end def metadata_path(chef_version) File.join(File.dirname(__FILE__), "..", "..", "chef_dsl_metadata/chef_#{chef_version}.json") end def resource_check?(key, resource_type, field) if resource_type.to_s.empty? || field.to_s.empty? raise ArgumentError, "Arguments cannot be nil or empty." end load_metadata resource_fields = @dsl_metadata[key] # If the resource type is not recognised then it may be a user-defined # resource. We could introspect these but at present we simply return # true. return true unless resource_fields.include?(resource_type.to_sym) # Otherwise the resource field must exist in our metadata to succeed resource_fields[resource_type.to_sym].include?(field.to_s) end class Search # lucene.treetop used to be provided by chef gem # We're keeping a local copy from chef 10.x def chef_search_grammars [File.expand_path("../../..", __FILE__) + "/misc/lucene.treetop"] end # Create the search parser from the first loadable grammar. def create_parser(grammar_paths) @search_parser ||= grammar_paths.inject(nil) do |parser, lucene_grammar| begin break parser unless parser.nil? # Don't instantiate custom nodes Treetop.load_from_string( IO.read(lucene_grammar).gsub(/<[^>]+>/, "")) LuceneParser.new rescue # Silently swallow and try the next grammar end end end # Has the search parser been loaded? def parser? ! @search_parser.nil? end # The search parser def parser @search_parser end end end end foodcritic-8.1.0/lib/foodcritic/dsl.rb0000644000004100000410000000441013005226016017671 0ustar www-datawww-datarequire "pathname" module FoodCritic # The DSL methods exposed for defining rules. A minimal example rule: # # rule "FC123", "My rule name" do # tags %w{style attributes} # recipe do |ast| # ## Rule implementation body # end # end # # * Each rule is defined within a `rule` block that defines the code and name # of the rule. # * Each rule block may contain further nested blocks for the components of # the cookbook that it is interested in linting. # For example `cookbook`, `recipe` or `library`. # # * Further DSL methods are available to define the `tags` and Chef versions # the rule `applies_to`. # class RuleDsl attr_reader :rules attr_reader :chef_version include Api def initialize(chef_version = Linter::DEFAULT_CHEF_VERSION) @chef_version = chef_version end # Define a new rule, the outer block of a rule definition. def rule(code, name, &block) @rules = [] if @rules.nil? @rules << Rule.new(code, name) yield self end # Add tags to the rule which can be used by the end user to filter the # rules to be applied. def tags(tags) rules.last.tags += tags end # Alternative to tags. Commonly used to constrain a rule to run only when # linting specific Chef versions. def applies_to(&block) rules.last.applies_to = block end def self.rule_block(name) define_method(name) do |&block| rules.last.send("#{name}=".to_sym, block) end end # The most frequently used block within a rule. A slight misnomer because # `recipe` rule blocks are also evaluated against providers. rule_block :recipe rule_block :cookbook rule_block :metadata rule_block :resource rule_block :attributes rule_block :provider rule_block :library rule_block :template rule_block :environment rule_block :role # Load the ruleset(s). def self.load(paths, chef_version = Linter::DEFAULT_CHEF_VERSION) dsl = RuleDsl.new(chef_version) paths.map do |path| File.directory?(path) ? Dir["#{path}/**/*.rb"].sort : path end.flatten.each do |path| dsl.instance_eval(File.read(path), path) end dsl.rules end end end foodcritic-8.1.0/lib/foodcritic/template.rb0000644000004100000410000000344313005226016020727 0ustar www-datawww-datamodule FoodCritic module Template # Extract expressions <%= expr %> from Erb templates. class ExpressionExtractor include Erubis::Basic::Converter def initialize init_converter({}) end def extract(template_code) @expressions = [] convert(template_code) expressions(template_code) end def add_expr(src, code, indicator) if indicator == "=" @expressions << { type: :expression, code: code.strip } end end def add_text(src, text) end def add_preamble(codebuf) end def add_postamble(codebuf) end def add_stmt(src, code) @expressions << { type: :statement, code: code.strip } end private def expressions(template_code) expr_lines = expressions_with_lines(template_code) expr_lines.map do |expr, line| e = @expressions.find { |e| e[:code] == expr } { code: expr, type: e[:type], line: line } if e end.compact end def expressions_with_lines(template_code) lines = lines_with_offsets(template_code) expression_offsets(template_code).map do |expr_offset, code| [code, lines.find { |line, offset| offset >= expr_offset }.first] end end def expression_offsets(template_code) expr_offsets = [] template_code.scan(DEFAULT_REGEXP) do |m| expr_offsets << [Regexp.last_match.offset(0).first, m[1].strip] end expr_offsets end def lines_with_offsets(template_code) line_offsets = [] template_code.scan(/$/) do |m| line_offsets << Regexp.last_match.offset(0).first end line_offsets.each_with_index.map { |pos, ln| [ln + 1, pos] } end end end end foodcritic-8.1.0/lib/foodcritic.rb0000644000004100000410000000120113005226016017102 0ustar www-datawww-datarequire "pathname" require "cucumber/core" require "treetop" require "ripper" require "yajl" require "erubis" require_relative "foodcritic/chef" require_relative "foodcritic/command_line" require_relative "foodcritic/domain" require_relative "foodcritic/error_checker" require_relative "foodcritic/notifications" require_relative "foodcritic/ast" require_relative "foodcritic/xml" require_relative "foodcritic/api" require_relative "foodcritic/dsl" require_relative "foodcritic/linter" require_relative "foodcritic/output" require_relative "foodcritic/rake_task" require_relative "foodcritic/template" require_relative "foodcritic/version" foodcritic-8.1.0/man/0000755000004100000410000000000013005226016014443 5ustar www-datawww-datafoodcritic-8.1.0/man/foodcritic.10000644000004100000410000000425013005226016016653 0ustar www-datawww-data.\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . .TH "FOODCRITIC" "1" "February 2016" "" "" . .SH "NAME" \fBfoodcritic\fR \- lint tool for chef cookbooks . .SH "SYNOPSIS" \fBfoodcritic\fR [\fIoptions\fR\.\.\.] \fIcookbook\fR\.\.\. . .P \fBfoodcritic\fR [\fIoptions\fR\.\.\.] \-\-list . .SH "DESCRIPTION" \fBfoodcritic\fR makes it easier to flag problems in your Chef cookbooks that will cause Chef to blow up when you attempt to converge\. This is about faster feedback\. . .P Each \fBcookbook\fR path specified will be examined for common problems and poor style\. . .SH "OPTIONS" . .TP \fB\-t\fR, \fB\-\-tags\fR \fITAGS\fR Only check against rules with the specified tags\. Prefix tags with a tilde \fB~\fR to exclude rules\. . .TP \fB\-l\fR, \fB\-\-list\fR Do not perform a lint check; instead simply list the rules that would be enabled based on the defaults and the rule selection options (\-t, \-I) . .TP \fB\-f\fR, \fB\-\-epic\-fail\fR \fITAGS\fR Exit non\-zero if any of the specified tags are matched\. Use the pseudo\-tag \fBany\fR to fail if any tag is matched\. . .TP \fB\-c\fR, \fB\-\-chef\-version\fR \fIVERSION\fR Only check against rules valid for this version of Chef\. . .TP \fB\-B\fR, \fB\-\-cookbook\-path\fR Cookbook path(s) to check\. . .TP \fB\-C\fR, \fB\-\-\fR[\fBno\-\fR]\fBcontext\fR Show lines matched against rather than the default summary\. . .TP \fB\-E\fR, \fB\-\-environment\-path\fR Environment path(s) to check\. . .TP \fB\-I\fR, \fB\-\-include\fR \fIPATH\fR Additional rule file path(s) to load\. . .TP \fB\-R\fR, \fB\-\-role\-path\fR Role path(s) to check\. . .TP \fB\-S\fR, \fB\-\-search\-grammar\fR \fIPATH\fR Specify grammar to use when validating search syntax\. (Default: the grammar of any installed Chef) . .TP \fB\-V\fR, \fB\-\-version\fR Display the foodcritic version\. . .TP \fB\-X\fR, \fB\-\-exclude\fR \fIPATH\fR Exclude path(s) from being linted\. . .SH "RETURN VALUES" By default, \fBfoodcritic\fR will always return \fB0\fR\. . .P If \fB\-\-epic\-fail\fR is specified, then \fBfoodcritic\fR will return \fB3\fR if any tags are matched\. . .SH "COPYRIGHT" \fBfoodcritic\fR is Copyright 2011 by Andrew Crump\. . .SH "SEE ALSO" chef(1) foodcritic-8.1.0/man/foodcritic.1.ronn0000644000004100000410000000351313005226016017627 0ustar www-datawww-datafoodcritic(1) -- lint tool for chef cookbooks ============================================= ## SYNOPSIS `foodcritic` [...] ... `foodcritic` [...] --list ## DESCRIPTION `foodcritic` makes it easier to flag problems in your Chef cookbooks that will cause Chef to blow up when you attempt to converge. This is about faster feedback. Each `cookbook` path specified will be examined for common problems and poor style. ## OPTIONS * `-t`, `--tags` : Only check against rules with the specified tags. Prefix tags with a tilde `~` to exclude rules. * `-l`, `--list`: Do not perform a lint check; instead simply list the rules that would be enabled based on the defaults and the rule selection options (-t, -I) * `-f`, `--epic-fail` : Exit non-zero if any of the specified tags are matched. Use the pseudo-tag `any` to fail if any tag is matched. * `-c`, `--chef-version` : Only check against rules valid for this version of Chef. * `-B`, `--cookbook-path`: Cookbook path(s) to check. * `-C`, `--`[`no-`]`context`: Show lines matched against rather than the default summary. * `-E`, `--environment-path`: Environment path(s) to check. * `-I`, `--include` : Additional rule file path(s) to load. * `-R`, `--role-path`: Role path(s) to check. * `-S`, `--search-grammar` : Specify grammar to use when validating search syntax. (Default: the grammar of any installed Chef) * `-V`, `--version`: Display the foodcritic version. * `-X`, `--exclude` : Exclude path(s) from being linted. ## RETURN VALUES By default, `foodcritic` will always return `0`. If `--epic-fail` is specified, then `foodcritic` will return `3` if any tags are matched. ## COPYRIGHT `foodcritic` is Copyright 2011 by Andrew Crump. ## SEE ALSO chef(1) foodcritic-8.1.0/foodcritic.gemspec0000644000004100000410000000174513005226016017371 0ustar www-datawww-datalib = File.expand_path("../lib/", __FILE__) $:.unshift lib unless $:.include?(lib) require "foodcritic/version" Gem::Specification.new do |s| s.name = "foodcritic" s.version = FoodCritic::VERSION s.description = "Lint tool for Chef cookbooks." s.summary = "foodcritic-#{s.version}" s.authors = ["Andrew Crump"] s.homepage = "http://foodcritic.io" s.license = "MIT" s.executables << "foodcritic" s.required_ruby_version = ">= 2.2.2" s.add_dependency("cucumber-core", ">= 1.3") s.add_dependency("nokogiri", ">= 1.5", "< 2.0") s.add_dependency("rake") s.add_dependency("treetop", "~> 1.4") s.add_dependency("yajl-ruby", "~> 1.1") s.add_dependency("erubis") s.add_dependency("rufus-lru", "~> 1.0") s.files = Dir["chef_dsl_metadata/*.json"] + Dir["lib/**/*.rb"] + Dir["misc/**/*"] s.files += Dir["Rakefile"] + Dir["Gemfile"] + Dir["*.gemspec"] s.files += Dir["spec/**/*"] + Dir["features/**/*"] s.files += Dir["*.md"] + Dir["LICENSE"] + Dir["man/*"] end foodcritic-8.1.0/LICENSE0000644000004100000410000000206313005226016014676 0ustar www-datawww-dataThe MIT License Copyright (C) 2011 by Andrew Crump Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.foodcritic-8.1.0/CHANGELOG.md0000644000004100000410000014130413005226016015504 0ustar www-datawww-data# FoodCritic Changelog: ## [8.1.0](https://github.com/acrmp/foodcritic/tree/8.1.0) (2016-10-20) [Full Changelog](https://github.com/acrmp/foodcritic/compare/v8.0.0...8.1.0) **Merged pull requests:** - Add Chef client 12.15.19 metadata [#493](https://github.com/acrmp/foodcritic/pull/493) ([tas50](https://github.com/tas50)) - Clarify exclude path instructions in the CLI help [#489](https://github.com/acrmp/foodcritic/pull/489) ([unixorn](https://github.com/unixorn)) ## [8.0.0](https://github.com/acrmp/foodcritic/tree/8.0.0) (2016-09-22) [Full Changelog](https://github.com/acrmp/foodcritic/compare/v8.0.0...7.1.0) **Merged pull requests:** - Require Ruby 2.2.2 or later [#487](https://github.com/acrmp/foodcritic/pull/487) ([tas50](https://github.com/tas50)) - Add 12.14.89 metadata and make it the default [#486](https://github.com/acrmp/foodcritic/pull/486) ([tas50](https://github.com/tas50)) - Fix new offenses introduced in chefstyle 0.4.0 [#482](https://github.com/acrmp/foodcritic/pull/482) ([lamont-granquist](https://github.com/lamont-granquist)) - Remove Chef 11 metadata and rule support [#481](https://github.com/acrmp/foodcritic/pull/481) ([tas50](https://github.com/tas50)) - Support old-style notifications with ruby 1.9 hash syntax [#385](https://github.com/acrmp/foodcritic/pull/385) ([akihiro17](https://github.com/akihiro17)) ## [7.1.0](https://github.com/acrmp/foodcritic/tree/7.1.0) [Full Changelog](https://github.com/acrmp/foodcritic/compare/v7.0.1...7.1.0) **Merged pull requests:** - Add Chef 12.13.37 metadata and make it the default [#479](https://github.com/acrmp/foodcritic/pull/479) ([tas50](https://github.com/tas50)) - Add missing assignment attributes [#478](https://github.com/acrmp/foodcritic/pull/478) ([ofir-petrushka](https://github.com/ofir-petrushka)) - Add 12.12.13 metadata and fix metadata generation [#472](https://github.com/acrmp/foodcritic/pull/472) ([tas50](https://github.com/tas50)) ## [7.0.1](https://github.com/acrmp/foodcritic/tree/7.0.1) (2016-07-06) [Full Changelog](https://github.com/acrmp/foodcritic/compare/v7.0.0...7.0.1) **Merged pull requests:** - Move the changelog task into the rakefile [#470](https://github.com/acrmp/foodcritic/pull/470) ([tas50](https://github.com/tas50)) - Readme improvements [#468](https://github.com/acrmp/foodcritic/pull/468) ([tas50](https://github.com/tas50)) ## [7.0.0](https://github.com/acrmp/foodcritic/tree/7.0.0) (2016-07-05) [Full Changelog](https://github.com/acrmp/foodcritic/compare/v6.3.0...7.0.0) **Implemented enhancements:** - Remove support for Ruby 2.0 [#465](https://github.com/acrmp/foodcritic/pull/465) ([tas50](https://github.com/tas50)) - Remove chef version support for Chef 0.7, 0.8, 0.9, and 0.10 [#464](https://github.com/acrmp/foodcritic/pull/464) ([tas50](https://github.com/tas50)) - Add chef 12.11.18 metadata and make it the default [#461](https://github.com/acrmp/foodcritic/pull/461) ([tas50](https://github.com/tas50)) - FC032 allow the new :before timing on resource notifications in Chef >= 12.6.0 [#441](https://github.com/acrmp/foodcritic/pull/441) ([gnjack](https://github.com/gnjack)) - New cookbook_maintainer api methods [#248](https://github.com/acrmp/foodcritic/pull/248) ([miguelcnf](https://github.com/miguelcnf)) **Merged pull requests:** - Resolve a few simple Rubocop lint / performance cops [#463](https://github.com/acrmp/foodcritic/pull/463) ([tas50](https://github.com/tas50)) - Remove unnecessary requires [#460](https://github.com/acrmp/foodcritic/pull/460) ([tas50](https://github.com/tas50)) ## [v6.3.0](https://github.com/acrmp/foodcritic/tree/v6.3.0) (2016-05-16) [Full Changelog](https://github.com/acrmp/foodcritic/compare/v6.2.0...v6.3.0) **Implemented enhancements:** - Add Chef 12.10.24 metadata and release 6.3.0 [#456](https://github.com/acrmp/foodcritic/pull/456) ([tas50](https://github.com/tas50)) ## [v6.2.0](https://github.com/acrmp/foodcritic/tree/v6.2.0) (2016-04-26) [Full Changelog](https://github.com/acrmp/foodcritic/compare/v6.1.1...v6.2.0) **Implemented enhancements:** - Add 12.9.38 metadata and make it the default chef version [#452](https://github.com/acrmp/foodcritic/pull/452) ([tas50](https://github.com/tas50)) ## [v6.1.1](https://github.com/acrmp/foodcritic/tree/v6.1.1) (2016-04-08) [Full Changelog](https://github.com/acrmp/foodcritic/compare/v6.1.0...v6.1.1) **Implemented enhancements:** - Use latest gherkin for faster installs [#447](https://github.com/acrmp/foodcritic/pull/447) ([jkeiser](https://github.com/jkeiser)) ## [v6.1.0](https://github.com/acrmp/foodcritic/tree/v6.1.0) (2016-04-06) [Full Changelog](https://github.com/acrmp/foodcritic/compare/v6.0.1...v6.1.0) **Implemented enhancements:** - Don't require cucumber and rubocop to run rake [#444](https://github.com/acrmp/foodcritic/pull/444) ([jkeiser](https://github.com/jkeiser)) - Add metadata for Chef 12.7.2 and update instructions [#427](https://github.com/acrmp/foodcritic/pull/427) ([tas50](https://github.com/tas50)) - Add 12.8.1 metadata + update metadata process [#438](https://github.com/acrmp/foodcritic/pull/438) ([tas50](https://github.com/tas50)) **Merged pull requests:** - Include gemspec and Gemfiles in distributed gem for ease of working with / running tests [#443](https://github.com/acrmp/foodcritic/pull/443) ([jkeiser](https://github.com/jkeiser)) - Test on Ruby 2.3.0 [#439](https://github.com/acrmp/foodcritic/pull/439) ([tas50](https://github.com/tas50)) - Rake.last_comment was depreciated in Rake11\. [#434](https://github.com/acrmp/foodcritic/pull/434) ([gkuchta](https://github.com/gkuchta)) ## [v6.0.1](https://github.com/acrmp/foodcritic/tree/v6.0.1) (2016-02-22) [Full Changelog](https://github.com/acrmp/foodcritic/compare/v6.0.0...v6.0.1) **Implemented enhancements:** - Check for URLs that are helpful to the Supermarket [#421](https://github.com/acrmp/foodcritic/pull/421) ([nathenharvey](https://github.com/nathenharvey)) **Fixed bugs:** - Fix FC058 false positives [#423](https://github.com/acrmp/foodcritic/pull/423) ([jaym](https://github.com/jaym)) ## v6.0.0 (14 January, 2016) Features: - Added FC055 to ensure that metadata.rb contains a maintainer - Added FC056 to ensure that metadata.rb contains a maintainer_email - Added FC057 to ensure that library providers include use_inline_resources - Added FC058 to ensure that library providers that include use_inline_resources and action_ methods - Added FC059 to ensure that LWRPs include use_inline_resources - Added FC060 to ensure that LWRPs don't use bad action methods - Added FC061 to ensure that the cookbook version is valid - Added FC062 to ensure that metadata includes a version - Added FC063 to ensure that a cookbook doesn't depend on itself in the metadata - Added DSL metadata for Chef 12.5.1 and 12.6.0 - Added new chef11 and chef12 tags for rules related to changes in those Chef releases - Added Oracle as an equivalent platform for the RHEL platform family in FC024 - Removed the Mustache pin to 0.99 in the Gemfile since we require Ruby 2.0+ now Bugfixes: - Renamed FC045 from 'Consider setting cookbook name in metadata' to 'Metadata does not contain cookbook name' as Chef 12 requires name metadata - Renamed FC015 from 'Consider converting definition to a LWRP' to 'Consider converting definition to a Custom Resource' since 12.5+ Custom Resources are a prefered pattern over LWRPs now - Changed FC045's annoyances tag to a correctness tag as name in metadata is now a requirement not an annoyance - Fixed the Rake tasks - Fixed FC048 incorrectly firing when a method name included "system" ## 5.0.0 (17 September, 2015) Features: - DSL metadata updated for Chef 11.18.x and up to Chef 12.4.1\. ([related issue](https://github.com/acrmp/foodcritic/issues/362)). - Set default `chef_version` to 12.4.1 ([related issue](https://github.com/acrmp/foodcritic/pull/364)). - add warnings for use of recommends/suggests. ([related issue](https://github.com/acrmp/foodcritic/pull/309)). - Show progress with --progress ([related issue](https://github.com/acrmp/foodcritic/pull/244)). - Added -l option to list enabled rules and descriptions ([related issue](https://github.com/acrmp/foodcritic/pull/285)). Bugfixes: - Fixed `node.force_default` and `node.force_override` along with many other methods on Chef::Node::Attribute that `Chef::Node#method_missing` was forwarding methods to. ([related issue](https://github.com/acrmp/foodcritic/pull/364)). - merge default options before check instead of during intialization (in Rake task) ([related issue](https://github.com/acrmp/foodcritic/pull/321)). - Fix UTF-8 errors in template checking ([related issue](https://github.com/acrmp/foodcritic/pull/317)). - Make FC041 smarter about CURL usage ([related issue](https://github.com/acrmp/foodcritic/pull/313)). - pinned moustache gem to 0.99 for ruby 1.9.3 compatibility Thanks @jdmundrawala - Added metadata for missing Chef 11 versions. Thanks @jdmundrawala - [FC044: Avoid bare attribute keys](http://acrmp.github.com/foodcritic/#FC044) would fire on parameterized attributes. Thanks @odcinek - [FC048: Prefer Mixlib::ShellOut](http://foodcritic.io/#FC048) would false positive on system attribute of user resource. Thanks @odcinek - Handle flagging binary files properly. Thanks @odcinek - [FC002: Avoid string interpolation where not required](http://acrmp.github.com/foodcritic/#FC002) would erroneously trigger on heredoc on ruby 2.2 Thanks @ryansouza and @odcinek Other: - 1.9.3 is removed from the travis matrix and no longer supported ([related issue](https://github.com/acrmp/foodcritic/pull/315)). - 1.9.3 compat is removed from the gemspec (v4.0.0 will be the last version that will install on 1.9.3) ([related issue](https://github.com/acrmp/foodcritic/pull/377)). - removed cookbooks no longer present in the chef-cookbooks repo from regression tests ## 4.0.0 (12th June, 2014) Features: - AST parsing is cached with a LRU cache, significantly reducing execution time ([related issue](https://github.com/acrmp/foodcritic/issues/200)). Thanks @dougbarth. - [FC001: Use strings in preference to symbols to access node attributes](http://foodcritic.io/#FC001) rule re-instated ([related issue](https://github.com/acrmp/foodcritic/issues/97)). Thanks @sethvargo. - Relaxed nokogiri and yajl-ruby dependencies for bundling with other gems ([related issue](https://github.com/acrmp/foodcritic/issues/217)) ([related issue](https://github.com/acrmp/foodcritic/issues/197)). Thanks @lamont-granquist, @elgalu. - DSL metadata for Chef versions 11.6.2 through 11.10.4 added ([related issue](https://github.com/acrmp/foodcritic/issues/220)). Thanks @lamont-granquist. - Improved rake task output on failure ([related issue](https://github.com/acrmp/foodcritic/issues/190)). Thanks @mlafeldt. - Allow rake task description to be specified ([related issue](https://github.com/acrmp/foodcritic/issues/190)). Thanks @mlafeldt. - Allow the rake task to use context output ([related issue](https://github.com/acrmp/foodcritic/issues/204)). Thanks @docwhat. - Add support for excluding paths at the command line with `-X` ([related issue](https://github.com/acrmp/foodcritic/issues/207)). Thanks @juanje, @docwhat. Bugfixes: - [FC003: Check whether you are running with chef server before using server-specific features](http://foodcritic.io/#FC003) would warn incorrectly against ternary expressions ([related issue](https://github.com/acrmp/foodcritic/issues/185)). Thanks @zts. - [FC006: Mode should be quoted or fully specified when setting file permissions](http://foodcritic.io/#FC006) would warn incorrectly if the mode was a reference to an array ([related issue](https://github.com/acrmp/foodcritic/issues/211)). Thanks @zts. - [FC022: Resource condition within loop may not behave as expected](http://foodcritic.io/#FC022) could warn incorrectly if the resource guard contained a loop ([related issue](https://github.com/acrmp/foodcritic/issues/69)). Thanks @jaymzh. - [FC022: Resource condition within loop may not behave as expected](http://foodcritic.io/#FC022) could warn incorrectly against definitions ([related issue](https://github.com/acrmp/foodcritic/issues/195)). Thanks @bpaquet. - [FC034: Unused template variables](http://foodcritic.io/#FC034) could warn incorrectly when different templates may be used based on platform. - [FC040: Execute resource used to run git commands](http://foodcritic.io/#FC040) would fail to warn for subsequent resources ([related issue](https://github.com/acrmp/foodcritic/issues/186)). Thanks @nkammah. - [FC047: Attribute assignment does not specify precedence](http://foodcritic.io/#FC047) would warn incorrectly on force attributes ([related issue](https://github.com/acrmp/foodcritic/issues/226)). Thanks @v-a. Other: - Ruby 1.9.2 support has been removed. - The default DSL metadata version has been bumped to 11.10.4 ([related issue](https://github.com/acrmp/foodcritic/issues/210)). Thanks @kmshultz. ## 3.0.3 (13th October, 2013) Bugfixes: - [FC051: Template partials loop indefinitely](http://foodcritic.io/#FC051) would cause an error for partials included from a subdirectory or where the partial did not exist ([related issue](https://github.com/acrmp/foodcritic/issues/176)). Thanks @claco, @michaelglass. ## 3.0.2 (5th October, 2013) Bugfixes: - [FC051: Template partials loop indefinitely](http://foodcritic.io/#FC051) can cause foodcritic to exit with an error on encountering a file that cannot be read as UTF-8\. We now explicitly exclude `.DS_Store` and `*.swp` as a workaround ([related issue](https://github.com/acrmp/foodcritic/issues/172)). Thanks @tmatilai, @claco. - [FC022: Resource condition within loop may not behave as expected](http://foodcritic.io/#FC022) would warn incorrectly against loops where the block accepts more than one argument ([related issue](https://github.com/acrmp/foodcritic/issues/69)). Thanks @Ips1975, @jaymzh. ## 3.0.1 (25th September, 2013) Other: - Rake version constraint removed to make packaging easier for users who deploy foodcritic alongside Omnibus Chef. ## 3.0.0 (14th September, 2013) Features: - [FC047: Attribute assignment does not specify precedence](http://foodcritic.io/#FC047) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/81)). Thanks @jtimberman, @miketheman. - [FC048: Prefer Mixlib::ShellOut](http://foodcritic.io/#FC048) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/111)). Thanks @jaymzh. - [FC049: Role name does not match containing file name](http://foodcritic.io/#FC049) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/19)). Thanks @jaymzh. - [FC050: Name includes invalid characters](http://foodcritic.io/#FC050) rule added. - [FC051: Template partials loop indefinitely](http://foodcritic.io/#FC051) rule added. - Added support for checking Chef environment and role files ([related issue](https://github.com/acrmp/foodcritic/issues/19)). Thanks @jaymzh. - Added metadata for Chef 11.6.0. - API methods `#field`, `#field_value` and `#templates_included` added. - The API now exposes access to whether individual warnings should be viewed as failures ([related issue](https://github.com/acrmp/foodcritic/issues/150)). Thanks @jamesdburgess. Bugfixes: - [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://foodcritic.io/#FC007) would warn if specifying dependencies in a multi-line word list with leading whitespace ([related issue](https://github.com/acrmp/foodcritic/issues/160)). Thanks to @philk for identifying and fixing this issue. - [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://foodcritic.io/#FC007) would not warn if `include_recipe` used parentheses ([related issue](https://github.com/acrmp/foodcritic/issues/155)). Thanks @jamesdburgess. - [FC017: LWRP does not notify when updated](http://foodcritic.io/#FC017) would warn even if `converge_by` or `use_inline_resources` was used ([related issue](https://github.com/acrmp/foodcritic/issues/90)). Thanks @stevendanna, @nevir. - [FC017: LWRP does not notify when updated](http://foodcritic.io/#FC017) would not warn if any action within the provider notified. Updated to report against actions individually ([related issue](https://github.com/acrmp/foodcritic/issues/90)). - [FC019: Access node attributes in a consistent manner](http://foodcritic.io/#FC019) would warn incorrectly against `node.run_state` ([related issue](https://github.com/acrmp/foodcritic/issues/66)). Thanks @jtimberman. - [FC033: Missing template](http://foodcritic.io/#FC033) would warn if the template filename began with a dot ([related issue](https://github.com/acrmp/foodcritic/issues/165)). Thanks @eherot. - [FC034: Unused template variables](http://foodcritic.io/#FC034) would warn incorrectly if variables were used by partials ([related issue](https://github.com/acrmp/foodcritic/issues/140)). Thanks to @v-a for implementing initial support for partials. - [FC034: Unused template variables](http://foodcritic.io/#FC034) would not be shown against inferred templates. - [FC038: Invalid resource action](http://foodcritic.io/#FC038) would warn incorrectly for log resources that specified a `write` action ([related issue](https://github.com/acrmp/foodcritic/issues/154)). Thanks @sethvargo. - The foodcritic gem was missing a dependency on rake which broke thor-foodcritic ([related issue](https://github.com/acrmp/foodcritic/issues/157)). Thanks @douglaswth. - Template warnings should now be shown against the correct line number. Previously warnings were always shown against line 1 ([related issue](https://github.com/acrmp/foodcritic/issues/102)). Thanks @juliandunn. - The `#declared_dependencies` API method could return duplicates for old versions of LibXML. ([related issue](https://github.com/acrmp/foodcritic/issues/163)). Thanks @danleyden. Other: - This release introduces breaking changes to programmatic use of foodcritic. ## 2.2.0 (10th July, 2013) Features: - Additional rules may now be shipped as gems. Files matching the path `foodcritic/rules/**/*.rb` will be loaded if the `--search-gems` option is specified ([related issue](https://github.com/acrmp/foodcritic/issues/143)). Thanks to @rteabeault for implementing this feature. - You can now control the rules applied to individual cookbooks by including a `.foodcritic` file at the root of your cookbook with the tags you want checked ([related issue](https://github.com/acrmp/foodcritic/issues/141)). Thanks to @sabat for implementing this feature. - The [project license](https://github.com/acrmp/foodcritic/blob/master/LICENSE) is now included in the built gem ([related issue](https://github.com/acrmp/foodcritic/issues/145)). Thanks @stefanor. - Foodcritic no longer uses the `rak` gem to generate output with context ([related issue](https://github.com/acrmp/foodcritic/issues/146)). Thanks to @stefanor for re-implementing context output to remove this dependency. - A man page is now included with foodcritic in [ronn-format](http://rtomayko.github.io/ronn/). Thanks @stefanor. Bugfixes: - Definitions are now included in the files that are linted ([related issue](https://github.com/acrmp/foodcritic/issues/142)). Thanks @bpaquet. - [FC009: Resource attribute not recognised](http://acrmp.github.com/foodcritic/#FC009) would warn against Windows-specific resource attributes ([related issue](https://github.com/acrmp/foodcritic/issues/135)). Thanks @stormtrooperguy. - [FC011: Missing README in markdown format](http://acrmp.github.com/foodcritic/#FC011) was not shown when outputting with context enabled ([related issue](https://github.com/acrmp/foodcritic/issues/146)). Thanks @stefanor. - [FC014: Consider extracting long ruby_block to library](http://acrmp.github.com/foodcritic/#FC014) previously used the number of AST nodes to determine block length. This was a poor proxy for length and this rule has been updated to warn if the number of lines > 15 ([related issue](https://github.com/acrmp/foodcritic/issues/130)). Thanks @adamjk-dev. - [FC014: Consider extracting long ruby_block to library](http://acrmp.github.com/foodcritic/#FC014) would warn against other blocks incorrectly ([related issue](https://github.com/acrmp/foodcritic/issues/130)). Thanks @adamjk-dev. - [FC014: Consider extracting long ruby_block to library](http://acrmp.github.com/foodcritic/#FC014) would raise an error if the ruby_block did not contain a nested `block` attribute ([related issue](https://github.com/acrmp/foodcritic/issues/139)). Thanks @stevendanna. - [FC033: Missing template](http://acrmp.github.com/foodcritic/#FC033) would warn when the template file did not have an erb extension ([related issue](https://github.com/acrmp/foodcritic/issues/131)). Thanks @nvwls. - [FC034: Unused template variables](http://acrmp.github.com/foodcritic/#FC034) would warn when the template file did not have an erb extension ([related issue](https://github.com/acrmp/foodcritic/issues/131)). Thanks @nvwls. ## 2.1.0 (17th April, 2013) Features: - DSL metadata will now reflect the version of Chef selected with `--chef-version`. For example this means that [FC009: Resource attribute not recognised](http://acrmp.github.com/foodcritic/#FC009) will warn about attributes not present in the specified version of Chef. Bugfixes: - [FC045: Consider setting cookbook name in metadata](http://acrmp.github.com/foodcritic/#FC045) would warn incorrectly and other rules would fail to work when activesupport had been loaded ([related issue](https://github.com/acrmp/foodcritic/issues/118)). This affected Berkshelf users. Thanks @scalp42 and @c-nolic. - Upgrade the version of Gherkin dependency to avoid deprecation warnings ([related issue](https://github.com/acrmp/foodcritic/pull/122)). Thanks @tmatilai. Other: - Known to run on MRI 2.0.0 - added to Travis CI matrix. ## 2.0.1 (31st March, 2013) Bugfixes: - Matches that should be ignored were not if the rule implementation used the `cookbook` block ([related issue](https://github.com/acrmp/foodcritic/issues/119)). - [FC033: Missing Template](http://acrmp.github.com/foodcritic/#FC033) would warn incorrectly when the template resource was nested within another resource ([related issue](https://github.com/acrmp/foodcritic/issues/96)). Thanks @justinforce. - The `#resource_attributes` API method now copes with nested resources. ## 2.0.0 (24th March, 2013) Features - Support added for ignoring individual matches. To ignore a match add a comment to the affected line in your cookbook of the format `# ~FC006` ([related issue](https://github.com/acrmp/foodcritic/issues/119)). Big thanks to @grosser. - Command line help now specifies the tag to use to fail the build on any rule match ([related issue](https://github.com/acrmp/foodcritic/issues/108)). Thanks @grosser. - FC046: Attribute assignment uses assign unless nil rule added ([related issue](https://github.com/acrmp/foodcritic/issues/52)). Thanks @jaymzh. Bugfixes: - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) updated to recognise checks that use return ([related issue](https://github.com/acrmp/foodcritic/issues/92)). Thanks @sethvargo, @miketheman. - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) updated to recognise checks that test for Chef Solo with alternation ([related issue](https://github.com/acrmp/foodcritic/issues/103)). Thanks @promisedlandt. - [FC017: LWRP does not notify when updated](http://acrmp.github.com/foodcritic/#FC017) modified to no longer warn when a notification is made without parentheses ([related issue](https://github.com/acrmp/foodcritic/issues/121)). Thanks @justinforce. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) would previously only show warnings for the first matching file. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) updated to avoid showing a false positive where a search is passed an argument based on a node attribute accessed with a string. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) updated to exclude specs, removing a source of false positives. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) fixed regression in var_ref handling. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) updated to not trigger on quoted symbols ([related issue](https://github.com/acrmp/foodcritic/issues/88)). Thanks @spheromak. - [FC024: Consider adding platform equivalents](http://acrmp.github.com/foodcritic/#FC024) updated to only warn about platform equivalents that are listed in the cookbook metadata ([related issue](https://github.com/acrmp/foodcritic/issues/59)). Thanks @tknerr. - [FC037: Invalid notification action](http://acrmp.github.com/foodcritic/#FC037) would cause foodcritic to halt with an error when a notification action was specified as an expression ([related issue](https://github.com/acrmp/foodcritic/issues/104)). Thanks @jaymzh. - [FC040: Execute resource used to run git commands](http://acrmp.github.com/foodcritic/#FC040) updated to not match if the git command cannot be expressed as a `git` resource. ([related issue](https://github.com/acrmp/foodcritic/pull/98)). Thanks @trobrock for raising this issue and implementing the fix. - [FC043: Prefer new notification syntax](http://acrmp.github.com/foodcritic/#FC043) updated to apply only to Chef versions >= 0.9.10 ([related issue](https://github.com/acrmp/foodcritic/issues/114)). Thanks @iainbeeston. - [FC044: Avoid bare attribute keys](http://acrmp.github.com/foodcritic/#FC044) changed to not raise false positives against block variables ([related issue](https://github.com/acrmp/foodcritic/issues/105)). Thanks @jaymzh. Other: - The `--repl` command line flag has been removed. This feature little used and was problematic for users attempting to use newer versions of pry or guard ([related issue](https://github.com/acrmp/foodcritic/issues/50)). Thanks @jperry, @miketheman, @jtimberman. - The `os_command?` api method has been removed. - The deprecated `cookbook_path` and `valid_path?` methods have been removed. This may cause breakage if you are using foodcritic programatically from Ruby. Please update your code to use the `cookbook_paths` and `valid_paths?` methods instead. - Added regression test for expected output against opscode-cookbooks. Run `bundle exec rake regressions` to perform this test. ## 1.7.0 (27th December, 2012) Features - [FC038: Invalid resource action](http://acrmp.github.com/foodcritic/#FC038) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/61)). Thanks @jaymzh. - [FC039: Node method cannot be accessed with key](http://acrmp.github.com/foodcritic/#FC039) rule added. - [FC040: Execute resource used to run git commands](http://acrmp.github.com/foodcritic/#FC040) rule stolen from Etsy rules (ETSY003) ([related issue](https://github.com/acrmp/foodcritic/issues/72)). Thanks @jonlives. - [FC041: Execute resource used to run curl or wget commands](http://acrmp.github.com/foodcritic/#FC041) rule stolen from Etsy rules (ETSY002) ([related issue](https://github.com/acrmp/foodcritic/issues/73)). Thanks @jonlives. - [FC042: Prefer include_recipe](http://acrmp.github.com/foodcritic/#FC042) rule added ([related issue](https://github.com/acrmp/foodcritic/pull/77)). Thanks @pwelch. - [FC043: Prefer new notification syntax](http://acrmp.github.com/foodcritic/#FC043) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/80)). Thanks @jtimberman. - [FC044: Avoid bare attribute keys](http://acrmp.github.com/foodcritic/#FC044) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/75)). Thanks @jtimberman. - [FC045: Consider setting cookbook name in metadata](http://acrmp.github.com/foodcritic/#FC045) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/64)). Thanks @miketheman. - Linter `#check` method no longer requires options to be explicitly passed if you are using the defaults ([related issue](https://github.com/acrmp/foodcritic/pull/71)). Thanks @kreynolds. Bugfixes: - Bump version of Nokogiri to [fix installation failure on Ubuntu 12.10](https://github.com/sparklemotion/nokogiri/issues/680) ([related issue](https://github.com/acrmp/foodcritic/issues/83)). Thanks @dracoater. - Support added for quoted symbols as notification actions ([related issue](https://github.com/acrmp/foodcritic/pull/94)). Thanks @ohm. - Add `spec/**/*` and `features/**/*` to default rake task `:exclude_paths` ([related issue](https://github.com/acrmp/foodcritic/pull/84)). Thanks @fnichol. - Remove unnecessary whitespace from rake task output ([related issue](https://github.com/acrmp/foodcritic/pull/78)). Thanks @ketan. - Removed [FC001: Use strings in preference to symbols to access node attributes](http://acrmp.github.com/foodcritic/#FC001) ([related issue](https://github.com/acrmp/foodcritic/issues/86)). Thanks @jtimberman. - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) updated to also match `unless` ([related issue](https://github.com/acrmp/foodcritic/issues/58)). Thanks @cap10morgan. - Decode numeric attributes. This could cause [FC005: Avoid repetition of resource declarations](http://acrmp.github.com/foodcritic/#FC005) to warn incorrectly ([related issue](https://github.com/acrmp/foodcritic/issues/79)). Thanks @masterkorp. - Recognise attributes correctly within a block. This could cause [FC005: Avoid repetition of resource declarations](http://acrmp.github.com/foodcritic/#FC005) to warn incorrectly ([related issue](https://github.com/acrmp/foodcritic/issues/76)). Thanks @masterkorp. - [FC009: Resource attribute not recognised](http://acrmp.github.com/foodcritic/#FC009) would warn incorrectly on methods used within a resource block ([related issue](https://github.com/acrmp/foodcritic/issues/85)). Thanks @arangamani. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) would warn incorrectly when referencing node attributes from a user-created hash. ([related issue](https://github.com/acrmp/foodcritic/issues/54)). Thanks @schubert. - [FC033: Missing Template](http://acrmp.github.com/foodcritic/#FC033) would warn incorrectly when using templates from another cookbook ([related issue](https://github.com/acrmp/foodcritic/issues/74)). Thanks @woohgit. ## 1.6.1 (31st August, 2012) Bugfixes: - [FC030: Cookbook contains debugger breakpoints](http://acrmp.github.com/foodcritic/#FC030) could prevent other rules from processing depending on the tags passed. - [FC037: Invalid notification action](http://acrmp.github.com/foodcritic/#FC037) would incorrectly warn against `subscribes` notifications ([related issue](https://github.com/acrmp/foodcritic/issues/65)). Thanks @jtimberman. ## 1.6.0 (28th August, 2012) Bugfixes: - Removed FC035: Template uses node attribute directly. For a discussion of the reasons for removal see the [related issue](https://github.com/acrmp/foodcritic/issues/60). ## 1.5.1 (21st August, 2012) Bugfixes: - Remove pry-doc dependency to resolve pry version conflict. ## 1.5.0 (21st August, 2012) Features: - [FC033: Missing template](http://acrmp.github.com/foodcritic/#FC033) rule added. - [FC034: Unused template variables](http://acrmp.github.com/foodcritic/#FC034) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/36)). - [FC035: Template uses node attribute directly](http://acrmp.github.com/foodcritic/#FC035) rule added. This is a style rule that may prove controversial. - [FC037: Invalid notification action](http://acrmp.github.com/foodcritic/#FC037) rule added. - The `#read_ast` API method now supports Erb templates. - API method `#resource_action?` added. - DSL extended to include `library`, `metadata` and `template`. Bugfixes: - [FC020: Conditional execution string attribute looks like Ruby](http://acrmp.github.com/foodcritic/#FC033) rule has been removed as unreliable. - The `#attribute_access` API method now correctly allows a type of `:any`. - The `#notifications` API method now supports notifications enclosed in braces ([related issue](https://github.com/etsy/foodcritic-rules/issues/3)). - Ensure command-line help is shown when an invalid option is passed. Thanks to @juanje for finding and fixing this issue. ## 1.4.0 (15th June, 2012) Features: - [FC027: Resource sets internal attribute](http://acrmp.github.com/foodcritic/#FC027) rule added. Thanks @macros. - [FC028: Incorrect #platform? usage](http://acrmp.github.com/foodcritic/#FC028) rule added. - [FC029: No leading cookbook name in recipe metadata](http://acrmp.github.com/foodcritic/#FC029) rule added. - [FC030: Cookbook contains debugger breakpoints](http://acrmp.github.com/foodcritic/#FC030) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/36)). Thanks @bryanwb. - [FC031: Cookbook without metadata file](http://acrmp.github.com/foodcritic/#FC031) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/43)). Thanks to @juanje for proposing and implementing this rule. - [FC032: Invalid notification timing](http://acrmp.github.com/foodcritic/#FC032) rule added. - Added the [notifications](http://acrmp.github.com/foodcritic/#notifications) API method to provide more convenient access to resource notifications ([related issue](https://github.com/acrmp/foodcritic/issues/31)). Bugfixes: - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) would warn if solo was checked for with `Chef::Config.solo` ([related issue](https://github.com/acrmp/foodcritic/issues/26)). Thanks to @miketheman for identifying and fixing this issue. - [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://acrmp.github.com/foodcritic/#FC007) would incorrectly warn if the cookbook name specified for `include_recipe` was dynamic ([related issue](https://github.com/acrmp/foodcritic/issues/44)). Thanks @markjreed. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) has been modified to no longer warn if the method called on node is called explicitly with brackets ([related issue](https://github.com/acrmp/foodcritic/issues/22)). Thanks @jaymzh. - The [resource_attributes](http://acrmp.github.com/foodcritic/#resource_attributes) API method has been updated to return boolean values correctly. ## 1.3.1 (9th June, 2012) Bugfixes: - Changes made to support multiple cookbook paths in 1.3.0 broke compatibility with earlier versions of the linting API. This release restores compatibility with third party code that uses the linter `#cookbook_path` or `#valid_path?` methods. - The Nokogiri dependency constraint has been locked to 1.5.0 again as Nokogiri 1.5.3 also appears to segfault in certain circumstances. ## 1.3.0 (21st May, 2012) Features: - [FC026: Conditional execution block attribute contains only string](http://acrmp.github.com/foodcritic/#FC026) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/30)). Thanks to @mkocher for proposing this rule. - Foodcritic now accepts multiple cookbook paths as arguments and supports linting of individual files only. Big thanks to @cgriego for these changes. These lay the groundwork for his new [guard-foodcritic](https://github.com/cgriego/guard-foodcritic) project. Bugfixes: - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) would still warn if solo was checked for as a string ([related issue](https://github.com/acrmp/foodcritic/issues/26)). Thanks to @miketheman for identifying and fixing this issue. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) would warn when the node object had been re-opened for extension ([related issue](https://github.com/acrmp/foodcritic/issues/22)). Thanks @jaymzh. - [FC020: Conditional execution string attribute looks like Ruby](http://acrmp.github.com/foodcritic/#FC020) updated to not warn against strings that appear to contain file paths or Windows `net use` ([related issue](https://github.com/acrmp/foodcritic/issues/30)). Thanks @eherot and @mconigliaro. - [FC022: Resource condition within loop may not behave as expected](http://acrmp.github.com/foodcritic/#FC022) would warn incorrectly if the resource name was set directly to the block variable rather than being a string expression ([related issue](https://github.com/acrmp/foodcritic/issues/29)). Thanks @eherot. - The [resource_attributes](http://acrmp.github.com/foodcritic/#resource_attributes) API method has been updated to return the AST for resource notifications ([related issue](https://github.com/acrmp/foodcritic/issues/31)). Thanks @jonlives. Other: - [Etsy have open-sourced their Foodcritic rules](https://github.com/etsy/foodcritic-rules). You should definitely check these out. - The effective Chef version for determining the rules to apply has been bumped to 0.10.10. ## 1.2.0 (21st April, 2012) Features: - [FC025: Prefer chef_gem to compile-time gem install](http://acrmp.github.com/foodcritic/#FC025) rule added. - Rules can now declare which versions of Chef they `apply_to`. The new command line argument `-c` (`--chef-version`) should be used to specify the effective Chef version. Bugfixes: - [FC001: Use strings in preference to symbols to access node attributes](http://acrmp.github.com/foodcritic/#FC001) could show false positives when using Chef search. - [FC001: Use strings in preference to symbols to access node attributes](http://acrmp.github.com/foodcritic/#FC001) would overlook the use of symbols to access node attributes when passing template variables. - [FC002: Avoid string interpolation where not required](http://acrmp.github.com/foodcritic/#FC002) fixed to no longer ignore the first keypair in a Hash ([related issue](https://github.com/acrmp/foodcritic/issues/24)). Thanks @Ips1975. - [FC004: Use a service resource to start and stop services](http://acrmp.github.com/foodcritic/#FC004) modified not to warn if the action is not supported by the `service` resource. - [FC005: Avoid repetition of resource declarations](http://acrmp.github.com/foodcritic/#FC005) modified not to warn when resources are branched within conditionals or provider actions. - [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://acrmp.github.com/foodcritic/#FC007) modified to ignore the use of `include_recipe` with embedded expressions. - [FC023: Prefer conditional attributes](http://acrmp.github.com/foodcritic/#FC023) modified not to warn if the conditional expression has an `else`. - The `resource_attributes` API method has been updated to return block attributes which were previously ignored ([related issue](https://github.com/acrmp/foodcritic/issues/23)). Thanks @jonlives. ## 1.1.0 (25th March, 2012) Features: - [FC024: Consider adding platform equivalents](http://acrmp.github.com/foodcritic/#FC024) rule added. - When writing new rules it is no longer necessary to explicitly map matching AST nodes to matches. You can now just return the AST nodes. Bugfixes: - The `cookbook_name` method now reflects the cookbook name if specified in metadata. This prevents a warning from being shown by [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://acrmp.github.com/foodcritic/#FC007) if the cookbook is in a differently named directory. - The `declared_dependencies` method previously would intermix version strings in the list of cookbook names. Other: - Chef 0.10.10 will include a new DSL method for defining a `default_action` for resources. Rule [FC016: LWRP does not declare a default action](http://acrmp.github.com/foodcritic/#FC016) has been updated to recognise the DSL change. - Nokogiri dependency constraint changed to no longer lock to 1.5.0 as their next release should include the fix for custom XPath functions. ## 1.0.1 (15th March, 2012) Bugfixes: - Nokogiri 1.5.1 and 1.5.2 cause a segfault so prevent their use until a fix is released ([related issue](https://github.com/acrmp/foodcritic/issues/18)). Thanks @miah. ## 1.0.0 (4th March, 2012) Features: - New `-I` option added to specify the path to your own custom rules ([related issue](https://github.com/acrmp/foodcritic/issues/8)). - The [Rule API](https://github.com/acrmp/foodcritic/blob/v1.0.0/lib/foodcritic/api.rb) was previously not supported and subject to change without warning. From this release it will now follow the [same versioning policy](http://docs.rubygems.org/read/chapter/7) as the command line interface. - A version flag (--version or -V) has been added ([related issue](https://github.com/acrmp/foodcritic/issues/16)). Bugfixes: - The evaluation of rule tags has been updated to be consistent with Cucumber. The major version number of foodcritic has been bumped to indicate that this is a breaking change. If you make use of tags (for example in a CI build) you may need to update your syntax. See the [related issue](https://github.com/acrmp/foodcritic/issues/11) for more information. Thanks @jaymzh. - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) has been updated to correctly identify the new version of chef-solo-search ([related issue](https://github.com/acrmp/foodcritic/issues/17)). ## 0.11.1 (29th February, 2012) Bugfixes: - Foodcritic could fail to activate yajl-json in some circumstances, failing with a runtime error. Whether this occurred was dependent on the version of yajl-ruby activated by Chef, which would vary dependent on the other gems installed on the system. See the [related issue](https://github.com/acrmp/foodcritic/issues/14) for more information. Thanks @jaymzh for identifying the issue and striving to get Foodcritic playing well with Omnibus. ## 0.11.0 (22nd February, 2012) Bugfixes: - Major bugfix to [FC006: Mode should be quoted or fully specified when setting file permissions](http://acrmp.github.com/foodcritic/#FC006). In earlier versions a four-digit literal file mode that set the first octet would not have been picked up by this rule ([related issue](https://github.com/acrmp/foodcritic/pull/9)). Thanks @aia for finding and fixing this bug. Check your cookbooks against FC006 after upgrading to see if you are affected. ## 0.10.0 (20th February, 2012) Features: - Performance improvements. - [FC023: Prefer conditional attributes](http://acrmp.github.com/foodcritic/#FC023) rule added. Stolen from @ampledata with thanks. - New `-S` option added to allow an alternate search grammar to be specified. Other: - Chef is no longer loaded at startup for performance reasons. Foodcritic now ships with Chef DSL metadata. ## 0.9.0 (26th January, 2012) Features: - New experimental `-C` option added to output context for rule matches. - [FC021: Resource condition in provider may not behave as expected](http://acrmp.github.com/foodcritic/#FC021) rule added. - [FC022: Resource condition within loop may not behave as expected](http://acrmp.github.com/foodcritic/#FC022) rule added. Bugfixes: - [FC005: Avoid repetition of resource declarations](http://acrmp.github.com/foodcritic/#FC005) rule modified to only warn when there are at least three _consecutive_ resources of the same type that could be 'rolled up' into a loop. - [FC016: LWRP does not declare a default action](http://acrmp.github.com/foodcritic/#FC016) rule restored. Thanks @stevendanna - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) rule modified to no longer treat DSL mixin methods as auto-vivified attributes. Identification of least used access method should now be accurate. Other: - [FC020: Conditional execution string attribute looks like Ruby](http://acrmp.github.com/foodcritic/#FC020) rule now grabs conditions from within single quotes. ## 0.8.1 (20th January, 2012) Bugfixes: - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) modified to avoid false positives on methods invoked on values in a Mash. ## 0.8.0 (19th January, 2012) Features: - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) rule added. - [FC020: Conditional execution string attribute looks like Ruby](http://acrmp.github.com/foodcritic/#FC020) rule added. Other: - Rule 'FC016: LWRP does not declare a default action' was incorrectly checking the provider for a default action rather than the resource. Removed this rule temporarily to avoid showing false positives. A user has patched this and will be submitting a pull request shortly. ## 0.7.0 (31st December, 2011) Features: - New `-f` option added to allow you to specify which warnings should result in the build being failed. See the new documentation on [using Foodcritic in Continuous Integration](http://acrmp.github.com/foodcritic/#ci) for more information. - New `-r` option added to drop you into the Pry REPL to interactively develop rules. See the updated documentation on [Writing a new rule](http://acrmp.github.com/foodcritic/#writing-a-new-rule) for more information. Bugfixes: - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) rule modified to not warn if the [edelight chef-solo-search library](https://github.com/edelight/chef-solo-search) has been installed. Thanks @tobami. - [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://acrmp.github.com/foodcritic/#FC007) rule modified to flag undeclared dependencies against the offending file rather than metadata.rb. - Removed the unused description field from the rule dsl. Other: - Project features now run much faster, running in-process by default. You can set an environment variable (`FC_FORK_PROCESS`) to specify that Cucumber runs should match the earlier behaviour and spawn a separate process using Aruba. ## 0.6.0 (18th December, 2011) Features: - [FC001: Use strings in preference to symbols to access node attributes](http://acrmp.github.com/foodcritic/#FC001) rule added. - [FC004: Use a service resource to start and stop services](http://acrmp.github.com/foodcritic/#FC004) rule extended to recognise upstart and invoke-rc.d. - [FC011: Missing README in markdown format](http://acrmp.github.com/foodcritic/#FC011) rule added. - [FC012: Use Markdown for README rather than RDoc](http://acrmp.github.com/foodcritic/#FC012) rule added. - [FC013: Use file_cache_path rather than hard-coding tmp paths](http://acrmp.github.com/foodcritic/#FC013) rule added. - [FC014: Consider extracting long ruby_block to library](http://acrmp.github.com/foodcritic/#FC014) rule added. - [FC015: Consider converting definition to a LWRP](http://acrmp.github.com/foodcritic/#FC015) rule added. - [FC016: LWRP does not declare a default action](http://acrmp.github.com/foodcritic/#FC016) rule added. - [FC017: LWRP does not notify when updated](http://acrmp.github.com/foodcritic/#FC017) rule added. - [FC018: LWRP uses deprecated notification syntax](http://acrmp.github.com/foodcritic/#FC018) rule added. Bugfixes: - Ensure warnings are line sorted numerically. Commit eb1762fd0fbf99fa513783d7838ceac0147c37bc - [FC005: Avoid repetition of resource declarations](http://acrmp.github.com/foodcritic/#FC005) rule made less aggressive. ## 0.5.2 (15th December, 2011) Bugfixes: - Fix JSON version range for compatibility with Bundler / Chef 0.10.6\. ([related issue](https://github.com/acrmp/foodcritic/issues/6)). Thanks @dysinger. ## 0.5.1 (14th December, 2011) Features: - Relaxed Ruby version constraint so we can run on 1.9.2 ([related issue](https://github.com/acrmp/foodcritic/issues/5)). Yay. Thanks @someara. ## 0.5.0 (13th December, 2011) Features: - Added the ability to choose rules to apply via tags ([related issue](https://github.com/acrmp/foodcritic/issues/4)). This uses the same syntax as [Cucumber tag expressions](https://github.com/cucumber/cucumber/wiki/tags). - [FC010: Invalid search syntax](http://acrmp.github.com/foodcritic/#FC010) rule added. ## 0.4.0 (10th December, 2011) Features: - [Spiffy new home page and documentation](http://acrmp.github.com/foodcritic/) - [FC008: Generated cookbook metadata needs updating](http://acrmp.github.com/foodcritic/#FC008) rule added. - [FC009: Resource attribute not recognised rule added](http://acrmp.github.com/foodcritic/#FC009). This adds a dependency on the Chef gem. - Performance improvement. Bugfixes: - Fixed typo in FC004 feature description ([related issue](https://github.com/acrmp/foodcritic/issues/2)). Thanks @smith. - Prevented statements within nested resource blocks from being interpreted as resource attributes. ## 0.3.0 (4th December, 2011) Features: - Significantly slower! But now you can write rules using [xpath or css selectors](http://nokogiri.org/). - FC006: File mode rule added. - FC007: Undeclared recipe dependencies rule added. ## 0.2.0 (1st December, 2011) Bugfixes: - Removed 'FC001: Use symbols in preference to strings to access node attributes' until a policy mechanism is introduced ([related issue](https://github.com/acrmp/foodcritic/issues/1)). Thanks @jtimberman ## 0.1.0 (30th November, 2011) Initial version. foodcritic-8.1.0/misc/0000755000004100000410000000000013005226016014623 5ustar www-datawww-datafoodcritic-8.1.0/misc/lucene.treetop0000644000004100000410000000610213005226016017501 0ustar www-datawww-data# # Author:: Seth Falcon () # Copyright:: Copyright (c) 2010-2015 Chef Software, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # grammar Lucene rule body (expression / space)* end rule expression operation / group / field / field_range / term / string end rule term keyword valid_letter+ / !keyword !"?" valid_letter end rule field field_name ":" (term/string/group) end rule field_range field_name ":" "[" range_value " TO " range_value "]" / field_name ":" "{" range_value " TO " range_value "}" end rule field_name !keyword valid_letter+ end rule range_value valid_letter+ / "*" end rule group space? '(' body ')' space? end rule operation binary_op / unary_op / fuzzy_op / boost_op end rule unary_op not_op / required_op / prohibited_op end rule binary_op (group / field / field_range / term) space? boolean_operator space+ body end rule boolean_operator and_operator / or_operator end rule and_operator 'AND' / '&&' end rule or_operator 'OR' / '||' end rule not_op not_operator space (group / field / field_range / term / string) / bang_operator space? (group / field / field_range / term / string) end rule not_operator 'NOT' end rule bang_operator '!' end rule required_op !valid_letter required_operator (term/string) / required_operator (term/string) end rule required_operator '+' end rule prohibited_op !valid_letter prohibited_operator (field/field_range/term/string) end rule prohibited_operator '-' end rule boost_op (term/string) '^' fuzzy_param end rule fuzzy_op (term/string) '~' fuzzy_param? (space / !valid_letter) end rule fuzzy_param [0-9] '.'? [0-9] / [0-9]+ end rule string '"' term (space term)* '"' end rule keyword 'AND' / 'OR' / 'NOT' end rule valid_letter start_letter+ ([a-zA-Z0-9@*?_.-] / '\\' special_char)* end rule start_letter [a-zA-Z0-9@._*] / '\\' special_char end rule end_letter [a-zA-Z0-9*?_.] / '\\' special_char end rule special_char [-+&|!(){}\[\]^"~*?:\\] end rule space [\s]+ end end foodcritic-8.1.0/README.md0000644000004100000410000000250413005226016015150 0ustar www-datawww-data# Foodcritic [![Build Status](https://travis-ci.org/acrmp/foodcritic.svg?branch=master)](https://travis-ci.org/acrmp/foodcritic) [![Gem Version](https://badge.fury.io/rb/foodcritic.svg)](http://badge.fury.io/rb/foodcritic) Foodcritic is a code linting tool for writing better and safer Chef cookbooks that runs both as a command line tool and as a Rake task. Out of the box Foodcritic contains over 50 cookbook rules, and plugin system for writing your own rules. ## Basic Usage ```shell $ gem install foodcritic $ foodcritic my_cookbook_dir ``` ## Documentation The Foodcritic site at contains documentation for each of the rules as well as documentation on the API for writing your own rules. ## Requirements - Ruby 2.2.2+ ## Building Foodcritic ``` $ bundle install $ bundle exec rake ``` ## License MIT - see the accompanying [LICENSE](https://github.com/acrmp/foodcritic/blob/master/LICENSE) file for details. ## Changelog To see what has changed in recent versions see the [CHANGELOG](https://github.com/acrmp/foodcritic/blob/master/CHANGELOG.md). Foodcritic follows the [Rubygems Semantic Versioning Policy](http://guides.rubygems.org/patterns/#semantic-versioning). ## Contributing Additional rules and bug fixes are welcome! Please fork and submit a pull request on an individual branch per change. foodcritic-8.1.0/chef_dsl_metadata/0000755000004100000410000000000013005226016017277 5ustar www-datawww-datafoodcritic-8.1.0/chef_dsl_metadata/chef_12.1.2.json0000644000004100000410000100355313005226016021707 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "dclone", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "ffi_yajl", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "itself", "key?", "keys", "kind_of?", "lazy", "loaded_recipe", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "rm", "rm_default", "rm_normal", "rm_override", "role?", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "select_run_list", "send", "set", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "tag", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "compile_time", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key_name", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "members", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "link_type", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_from", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_from", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "local", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verify" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "iterations", "itself", "kind_of?", "lazy", "load_from", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "state", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.0.0.json0000644000004100000410000075242313005226016021712 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "dclone", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "ffi_yajl", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "itself", "key?", "keys", "kind_of?", "lazy", "loaded_recipe", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "rm", "rm_default", "rm_normal", "rm_override", "role?", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "select_run_list", "send", "set", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "tag", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chunk", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key_name", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "sensitive", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "local", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "iterations", "itself", "kind_of?", "lazy", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "salt", "search", "send", "sensitive", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "installer_type", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "sensitive", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "state", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.10.24.json0000644000004100000410000140030013005226016022042 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "add_machine_options", "apply_expansion_attributes", "apt_package", "apt_repository", "apt_update", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "build_resource", "chef_acl", "chef_client", "chef_container", "chef_data_bag", "chef_environment", "chef_environment=", "chef_gem", "chef_group", "chef_mirror", "chef_node", "chef_organization", "chef_role", "chef_server_rest", "chef_server_rest=", "chef_user", "chocolatey_package", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "control_group", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "current_image_options", "current_machine_options", "data_bag", "data_bag_item", "dclone", "declare_resource", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_resource", "delete_resource!", "deploy", "deploy_branch", "deploy_revision", "describe_self_for_error", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "dpkg_package", "dsc_resource", "dsc_script", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "edit_resource", "edit_resource!", "encrypted?", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "find_resource", "find_resource!", "for_json", "force_default!", "force_override!", "forced_32bit_override_required?", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "get_private_key", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "include_recipe", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key?", "keys", "kind_of?", "ksh", "l_w_r_p_base", "launchd", "lazy", "link", "load_balancer", "load_recipe", "loaded_recipe", "log", "machine", "machine_batch", "machine_execute", "machine_file", "machine_image", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "notifying_block", "object_id", "ohai", "openbsd_package", "osx_config_profile", "osx_profile", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_key", "private_methods", "protected_methods", "ps_credential", "psych_to_yaml", "public_key", "public_method", "public_methods", "public_send", "python", "reboot", "reboot_pending?", "recipe?", "recipe_list", "recipe_list=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key", "registry_key_exists?", "registry_value_exists?", "remote_directory", "remote_file", "remove_instance_variable", "require_recipe", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "search", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "subcontext_block", "subversion", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "user", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "with_chef_data_bag", "with_chef_data_bag_item_encryption", "with_chef_environment", "with_chef_local_server", "with_chef_server", "with_driver", "with_image_options", "with_machine_options", "with_os_architecture", "with_run_context", "wow64_architecture_override_required?", "wow64_directory", "yum_package", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<", "<=", "<=>", "==", "===", "=~", ">", ">=", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "chunk_while", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "dig", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "fetch_values", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "grep_v", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_proc", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "apt_repository": [ "add", "nothing", "remove" ], "apt_update": [ "nothing", "periodic", "update" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "chocolatey_package": [ "install", "nothing", "purge", "reconfig", "remove", "uninstall", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ksh": [ "nothing", "run" ], "launchd": [ "create", "create_if_missing", "delete", "disable", "enable", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "osx_profile": [ "install", "nothing", "remove" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "default_release=", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_repository": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "cache_rebuild", "cache_rebuild=", "class", "clone", "components", "components=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "deb_src", "deb_src=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distribution", "distribution=", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "key_proxy", "key_proxy=", "keyserver", "keyserver=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "repo_name", "repo_name=", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "trusted", "trusted=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri", "uri=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_update": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frequency", "frequency=", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "compile_time", "compile_time=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chocolatey_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "command=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_action", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "easy_install_binary", "easy_install_binary=", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "module_name=", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "python_binary=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key_name", "key_name=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group_name", "group_name=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "homebrew_user=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "before_notifications", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "name=", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "accept_license=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ksh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "launchd": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "abandon_process_group", "abandon_process_group=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "backup", "backup=", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "debug", "debug=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "disabled", "disabled=", "display", "dup", "elapsed_time", "enable_globbing", "enable_globbing=", "enable_transactions", "enable_transactions=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment_variables", "environment_variables=", "epic_fail", "eql?", "equal?", "events", "exit_timeout", "exit_timeout=", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "group=", "guard_interpreter", "hard_resource_limits", "hard_resource_limits=", "hash", "hash=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inetd_compatibility", "inetd_compatibility=", "init_groups", "init_groups=", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_alive", "keep_alive=", "kind_of?", "label", "label=", "launch_only_once", "launch_only_once=", "lazy", "ld_group", "ld_group=", "limit_load_from_hosts", "limit_load_from_hosts=", "limit_load_to_hosts", "limit_load_to_hosts=", "limit_load_to_session_type", "limit_load_to_session_type=", "load_from", "lookup_provider_constant", "low_priority_io", "low_priority_io=", "mach_services", "mach_services=", "method", "method_missing", "methods", "mode", "mode=", "name", "name=", "nice", "nice=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "on_demand", "on_demand=", "only_if", "only_if_args", "owner", "owner=", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "process_type", "process_type=", "program", "program=", "program_arguments", "program_arguments=", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "queue_directories", "queue_directories=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "root_directory", "root_directory=", "run_action", "run_at_load", "run_at_load=", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "session_type", "session_type=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "sockets", "sockets=", "soft_resource_limits", "soft_resource_limits=", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "standard_error_path", "standard_error_path=", "standard_in_path", "standard_in_path=", "standard_out_path", "standard_out_path=", "start_calendar_interval", "start_calendar_interval=", "start_interval", "start_interval=", "start_on_mount", "start_on_mount=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "throttle_interval", "throttle_interval=", "time_out", "time_out=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "type", "type=", "umask", "umask=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "wait_for_debugger", "wait_for_debugger=", "watch_paths", "watch_paths=", "with_os_architecture", "working_directory", "working_directory=", "wow64_architecture_override_required?", "wow64_directory" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "target_file=", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "layout", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "raid_device=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "device_type", "disable_wow64_file_redirection", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "osx_profile": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identifier", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "profile", "profile_name", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "show_progress", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "name=", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "target=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_binary", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "installer_type=", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remote_file_attributes=", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "returns=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "flush_cache=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_binary", "yum_binary=" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.8.1.json0000644000004100000410000136452213005226016021723 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "add_machine_options", "apply_expansion_attributes", "apt_package", "apt_update", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "build_resource", "chef_acl", "chef_client", "chef_container", "chef_data_bag", "chef_environment", "chef_environment=", "chef_gem", "chef_group", "chef_mirror", "chef_node", "chef_organization", "chef_role", "chef_server_rest", "chef_server_rest=", "chef_user", "chocolatey_package", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "current_image_options", "current_machine_options", "dclone", "declare_resource", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "deploy", "deploy_branch", "deploy_revision", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "dpkg_package", "dsc_resource", "dsc_script", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "forced_32bit_override_required?", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "get_private_key", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key?", "keys", "kind_of?", "ksh", "l_w_r_p_base", "launchd", "lazy", "link", "load_balancer", "loaded_recipe", "log", "machine", "machine_batch", "machine_execute", "machine_file", "machine_image", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "ohai", "openbsd_package", "osx_config_profile", "osx_profile", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_key", "private_methods", "protected_methods", "psych_to_yaml", "public_key", "public_method", "public_methods", "public_send", "python", "reboot", "recipe?", "recipe_list", "recipe_list=", "registry_key", "remote_directory", "remote_file", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "subversion", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "user", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "with_chef_data_bag", "with_chef_data_bag_item_encryption", "with_chef_environment", "with_chef_local_server", "with_chef_server", "with_driver", "with_image_options", "with_machine_options", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_package", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<", "<=", "<=>", "==", "===", "=~", ">", ">=", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "chunk_while", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "dig", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "fetch_values", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "grep_v", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_proc", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "apt_update": [ "nothing", "periodic", "update" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "chocolatey_package": [ "install", "nothing", "purge", "reconfig", "remove", "uninstall", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ksh": [ "nothing", "run" ], "launchd": [ "create", "create_if_missing", "delete", "disable", "enable", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "osx_profile": [ "install", "nothing", "remove" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "default_release=", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_update": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frequency", "frequency=", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "compile_time", "compile_time=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chocolatey_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "command=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_action", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "easy_install_binary", "easy_install_binary=", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "module_name=", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "python_binary=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key_name", "key_name=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group_name", "group_name=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "homebrew_user=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "before_notifications", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "name=", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "accept_license=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ksh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "launchd": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "abandon_process_group", "abandon_process_group=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "backup", "backup=", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "debug", "debug=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "disabled", "disabled=", "display", "dup", "elapsed_time", "enable_globbing", "enable_globbing=", "enable_transactions", "enable_transactions=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment_variables", "environment_variables=", "epic_fail", "eql?", "equal?", "events", "exit_timeout", "exit_timeout=", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "group=", "guard_interpreter", "hard_resource_limits", "hard_resource_limits=", "hash", "hash=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inetd_compatibility", "inetd_compatibility=", "init_groups", "init_groups=", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_alive", "keep_alive=", "kind_of?", "label", "label=", "launch_only_once", "launch_only_once=", "lazy", "ld_group", "ld_group=", "limit_load_from_hosts", "limit_load_from_hosts=", "limit_load_to_hosts", "limit_load_to_hosts=", "limit_load_to_session_type", "limit_load_to_session_type=", "load_from", "lookup_provider_constant", "low_priority_io", "low_priority_io=", "mach_services", "mach_services=", "method", "method_missing", "methods", "mode", "mode=", "name", "name=", "nice", "nice=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "on_demand", "on_demand=", "only_if", "only_if_args", "owner", "owner=", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "process_type", "process_type=", "program", "program=", "program_arguments", "program_arguments=", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "queue_directories", "queue_directories=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "root_directory", "root_directory=", "run_action", "run_at_load", "run_at_load=", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "session_type", "session_type=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "sockets", "sockets=", "soft_resource_limits", "soft_resource_limits=", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "standard_error_path", "standard_error_path=", "standard_in_path", "standard_in_path=", "standard_out_path", "standard_out_path=", "start_calendar_interval", "start_calendar_interval=", "start_interval", "start_interval=", "start_on_mount", "start_on_mount=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "throttle_interval", "throttle_interval=", "time_out", "time_out=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "type", "type=", "umask", "umask=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "wait_for_debugger", "wait_for_debugger=", "watch_paths", "watch_paths=", "with_os_architecture", "working_directory", "working_directory=", "wow64_architecture_override_required?", "wow64_directory" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "target_file=", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "raid_device=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "device_type", "disable_wow64_file_redirection", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "osx_profile": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identifier", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "profile", "profile_name", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "name=", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "target=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_binary", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "installer_type=", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remote_file_attributes=", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "returns=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "flush_cache=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_binary", "yum_binary=" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.11.18.json0000644000004100000410000141656713005226016022074 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "add_machine_options", "apply_expansion_attributes", "apt_package", "apt_repository", "apt_update", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "build_resource", "chef_acl", "chef_client", "chef_container", "chef_data_bag", "chef_environment", "chef_environment=", "chef_gem", "chef_group", "chef_mirror", "chef_node", "chef_organization", "chef_role", "chef_server_rest", "chef_server_rest=", "chef_user", "chocolatey_package", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "control_group", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "current_image_options", "current_machine_options", "data_bag", "data_bag_item", "dclone", "declare_resource", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_resource", "delete_resource!", "deploy", "deploy_branch", "deploy_revision", "describe_self_for_error", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "docker?", "dpkg_package", "dsc_resource", "dsc_script", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "edit_resource", "edit_resource!", "encrypted?", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "find_resource", "find_resource!", "for_json", "force_default!", "force_override!", "forced_32bit_override_required?", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "get_private_key", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "include_recipe", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key?", "keys", "kind_of?", "ksh", "l_w_r_p_base", "launchd", "lazy", "link", "load_balancer", "load_recipe", "loaded_recipe", "log", "machine", "machine_batch", "machine_execute", "machine_file", "machine_image", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "notifying_block", "object_id", "ohai", "openbsd_package", "osx_config_profile", "osx_profile", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_key", "private_methods", "protected_methods", "ps_credential", "psych_to_yaml", "public_key", "public_method", "public_methods", "public_send", "python", "reboot", "reboot_pending?", "recipe?", "recipe_list", "recipe_list=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key", "registry_key_exists?", "registry_value_exists?", "remote_directory", "remote_file", "remove_instance_variable", "require_recipe", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "search", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "subcontext_block", "subversion", "systemd_unit", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "user", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "with_chef_data_bag", "with_chef_data_bag_item_encryption", "with_chef_environment", "with_chef_local_server", "with_chef_server", "with_driver", "with_image_options", "with_machine_options", "with_os_architecture", "with_run_context", "wow64_architecture_override_required?", "wow64_directory", "yum_package", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<", "<=", "<=>", "==", "===", "=~", ">", ">=", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assert_valid_windows_architecture!", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "chunk_while", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "dig", "disable_wow64_file_redirection", "display", "display_hash", "docker?", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "fetch_values", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "forced_32bit_override_required?", "freeze", "from_file", "frozen?", "gem", "grep", "grep_v", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_proc", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "valid_windows_architecture?", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "apt_repository": [ "add", "nothing", "remove" ], "apt_update": [ "nothing", "periodic", "update" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "chocolatey_package": [ "install", "nothing", "purge", "reconfig", "remove", "uninstall", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ksh": [ "nothing", "run" ], "launchd": [ "create", "create_if_missing", "delete", "disable", "enable", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "osx_profile": [ "install", "nothing", "remove" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "systemd_unit": [ "create", "delete", "disable", "enable", "mask", "nothing", "reload", "reload_or_restart", "reload_or_try_restart", "restart", "start", "stop", "try_restart", "unmask" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "default_release=", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_repository": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "cache_rebuild", "cache_rebuild=", "class", "clone", "components", "components=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "deb_src", "deb_src=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distribution", "distribution=", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "key_proxy", "key_proxy=", "keyserver", "keyserver=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "repo_name", "repo_name=", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "trusted", "trusted=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri", "uri=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_update": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frequency", "frequency=", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "compile_time", "compile_time=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chocolatey_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "command=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_action", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "easy_install_binary", "easy_install_binary=", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "module_name=", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "python_binary=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key_name", "key_name=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group_name", "group_name=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "homebrew_user=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "before_notifications", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "name=", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "accept_license=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ksh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "launchd": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "abandon_process_group", "abandon_process_group=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "backup", "backup=", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "debug", "debug=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "disabled", "disabled=", "display", "docker?", "dup", "elapsed_time", "enable_globbing", "enable_globbing=", "enable_transactions", "enable_transactions=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment_variables", "environment_variables=", "epic_fail", "eql?", "equal?", "events", "exit_timeout", "exit_timeout=", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "group=", "guard_interpreter", "hard_resource_limits", "hard_resource_limits=", "hash", "hash=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inetd_compatibility", "inetd_compatibility=", "init_groups", "init_groups=", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_alive", "keep_alive=", "kind_of?", "label", "label=", "launch_only_once", "launch_only_once=", "lazy", "ld_group", "ld_group=", "limit_load_from_hosts", "limit_load_from_hosts=", "limit_load_to_hosts", "limit_load_to_hosts=", "limit_load_to_session_type", "limit_load_to_session_type=", "load_from", "lookup_provider_constant", "low_priority_io", "low_priority_io=", "mach_services", "mach_services=", "method", "method_missing", "methods", "mode", "mode=", "name", "name=", "nice", "nice=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "on_demand", "on_demand=", "only_if", "only_if_args", "owner", "owner=", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "process_type", "process_type=", "program", "program=", "program_arguments", "program_arguments=", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "queue_directories", "queue_directories=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "root_directory", "root_directory=", "run_action", "run_at_load", "run_at_load=", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "session_type", "session_type=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "sockets", "sockets=", "soft_resource_limits", "soft_resource_limits=", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "standard_error_path", "standard_error_path=", "standard_in_path", "standard_in_path=", "standard_out_path", "standard_out_path=", "start_calendar_interval", "start_calendar_interval=", "start_interval", "start_interval=", "start_on_mount", "start_on_mount=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "throttle_interval", "throttle_interval=", "time_out", "time_out=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "type", "type=", "umask", "umask=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "wait_for_debugger", "wait_for_debugger=", "watch_paths", "watch_paths=", "with_os_architecture", "working_directory", "working_directory=", "wow64_architecture_override_required?", "wow64_directory" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "target_file=", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "layout", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "raid_device=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "device_type", "disable_wow64_file_redirection", "display", "docker?", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "osx_profile": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identifier", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "profile", "profile_name", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "show_progress", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "docker?", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "name=", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "target=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_binary", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "systemd_unit": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "active", "active=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enabled=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "masked=", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "static", "static=", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_ini", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "triggers_reload", "triggers_reload=", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "user=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "installer_type=", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remote_file_attributes=", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "returns=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "flush_cache=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_binary", "yum_binary=" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.6.0.json0000644000004100000410000127645113005226016021723 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "add_machine_options", "apply_expansion_attributes", "apt_package", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "build_resource", "chef_acl", "chef_client", "chef_container", "chef_data_bag", "chef_environment", "chef_environment=", "chef_gem", "chef_group", "chef_mirror", "chef_node", "chef_organization", "chef_role", "chef_server_rest", "chef_server_rest=", "chef_user", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "current_image_options", "current_machine_options", "dclone", "declare_resource", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "deploy", "deploy_branch", "deploy_revision", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "dpkg_package", "dsc_resource", "dsc_script", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "forced_32bit_override_required?", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "get_private_key", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "key?", "keys", "kind_of?", "ksh", "l_w_r_p_base", "lazy", "link", "load_balancer", "loaded_recipe", "log", "machine", "machine_batch", "machine_execute", "machine_file", "machine_image", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "ohai", "openbsd_package", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_key", "private_methods", "protected_methods", "psych_to_yaml", "public_key", "public_method", "public_methods", "public_send", "python", "reboot", "recipe?", "recipe_list", "recipe_list=", "registry_key", "remote_directory", "remote_file", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "subversion", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "user", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "with_chef_data_bag", "with_chef_data_bag_item_encryption", "with_chef_environment", "with_chef_local_server", "with_chef_server", "with_driver", "with_image_options", "with_machine_options", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_package", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_before", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ksh": [ "nothing", "run" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clone", "compile_time", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "backup", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "command=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_action", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "key_name", "key_name=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "backup", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group_name", "group_name=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "before_notifications", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "name=", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ksh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "target_file=", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "raid_device=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "device_type", "disable_wow64_file_redirection", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "key", "key=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "backup", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "forced_32bit_override_required?", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "name=", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "target=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_binary", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "backup", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "before_notifications", "checksum", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_binary" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.1.1.json0000644000004100000410000100355313005226016021706 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "dclone", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "ffi_yajl", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "itself", "key?", "keys", "kind_of?", "lazy", "loaded_recipe", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "rm", "rm_default", "rm_normal", "rm_override", "role?", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "select_run_list", "send", "set", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "tag", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "compile_time", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key_name", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "members", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "link_type", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_from", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_from", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "local", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verify" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "iterations", "itself", "kind_of?", "lazy", "load_from", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "state", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.2.1.json0000644000004100000410000101306513005226016021706 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "dclone", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "ffi_yajl", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "itself", "key?", "keys", "kind_of?", "lazy", "loaded_recipe", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "rm", "rm_default", "rm_normal", "rm_override", "role?", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "select_run_list", "send", "set", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "tag", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "compile_time", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key_name", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "members", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "link_type", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_from", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_from", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "local", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verify" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "iterations", "itself", "kind_of?", "lazy", "load_from", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "state", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.13.37.json0000644000004100000410000143763713005226016022100 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "add_machine_options", "apply_expansion_attributes", "apt_package", "apt_repository", "apt_update", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "build_resource", "chef_acl", "chef_client", "chef_container", "chef_data_bag", "chef_data_bag_item", "chef_environment", "chef_environment=", "chef_gem", "chef_group", "chef_mirror", "chef_node", "chef_organization", "chef_role", "chef_server_rest", "chef_server_rest=", "chef_user", "chocolatey_package", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "control_group", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "current_image_options", "current_machine_options", "data_bag", "data_bag_item", "dclone", "declare_resource", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_resource", "delete_resource!", "deploy", "deploy_branch", "deploy_revision", "describe_self_for_error", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "docker?", "dpkg_package", "dsc_resource", "dsc_script", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "edit_resource", "edit_resource!", "encrypted?", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "find_resource", "find_resource!", "for_json", "force_default!", "force_override!", "forced_32bit_override_required?", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "get_private_key", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "include_recipe", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key?", "keys", "kind_of?", "ksh", "l_w_r_p_base", "launchd", "lazy", "link", "load_balancer", "load_recipe", "loaded_recipe", "log", "machine", "machine_batch", "machine_execute", "machine_file", "machine_image", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "notifying_block", "object_id", "ohai", "openbsd_package", "osx_config_profile", "osx_profile", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_key", "private_methods", "protected_methods", "ps_credential", "psych_to_yaml", "public_key", "public_method", "public_methods", "public_send", "python", "read", "read!", "reboot", "reboot_pending?", "recipe?", "recipe_list", "recipe_list=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key", "registry_key_exists?", "registry_value_exists?", "remote_directory", "remote_file", "remove_instance_variable", "require_recipe", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "search", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "subcontext_block", "subversion", "systemd_unit", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "unlink", "unlink!", "untaint", "untrust", "untrusted?", "update_from!", "user", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "with_chef_data_bag", "with_chef_data_bag_item_encryption", "with_chef_environment", "with_chef_local_server", "with_chef_server", "with_driver", "with_image_options", "with_machine_options", "with_os_architecture", "with_run_context", "wow64_architecture_override_required?", "wow64_directory", "write", "write!", "yum_package", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<", "<=", "<=>", "==", "===", "=~", ">", ">=", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assert_valid_windows_architecture!", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "chunk_while", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "dig", "disable_wow64_file_redirection", "display", "display_hash", "docker?", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "exist?", "expand!", "extend", "fetch", "fetch_values", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "forced_32bit_override_required?", "freeze", "from_file", "frozen?", "gem", "grep", "grep_v", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "read", "read!", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_proc", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "unlink", "unlink!", "untaint", "untrust", "untrusted?", "update", "update_from!", "valid_windows_architecture?", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "write", "write!", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "apt_repository": [ "add", "nothing", "remove" ], "apt_update": [ "nothing", "periodic", "update" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "chocolatey_package": [ "install", "nothing", "purge", "reconfig", "remove", "uninstall", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ksh": [ "nothing", "run" ], "launchd": [ "create", "create_if_missing", "delete", "disable", "enable", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "osx_profile": [ "install", "nothing", "remove" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "systemd_unit": [ "create", "delete", "disable", "enable", "mask", "nothing", "reload", "reload_or_restart", "reload_or_try_restart", "restart", "start", "stop", "try_restart", "unmask" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "unresolved_subscribes": [ "nothing" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "default_release=", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_repository": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "cache_rebuild", "cache_rebuild=", "class", "clone", "components", "components=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "deb_src", "deb_src=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distribution", "distribution=", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "key_proxy", "key_proxy=", "keyserver", "keyserver=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "repo_name", "repo_name=", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "trusted", "trusted=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri", "uri=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_update": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frequency", "frequency=", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "compile_time", "compile_time=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chocolatey_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "command=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_action", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "easy_install_binary", "easy_install_binary=", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "module_name=", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "python_binary=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key_name", "key_name=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group_name", "group_name=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "homebrew_user=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "before_notifications", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "name=", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "accept_license=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ksh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "launchd": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "abandon_process_group", "abandon_process_group=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "backup", "backup=", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "debug", "debug=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "disabled", "disabled=", "display", "docker?", "dup", "elapsed_time", "enable_globbing", "enable_globbing=", "enable_transactions", "enable_transactions=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment_variables", "environment_variables=", "epic_fail", "eql?", "equal?", "events", "exit_timeout", "exit_timeout=", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "group=", "guard_interpreter", "hard_resource_limits", "hard_resource_limits=", "hash", "hash=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inetd_compatibility", "inetd_compatibility=", "inherits", "init_groups", "init_groups=", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_alive", "keep_alive=", "kind_of?", "label", "label=", "launch_only_once", "launch_only_once=", "lazy", "ld_group", "ld_group=", "limit_load_from_hosts", "limit_load_from_hosts=", "limit_load_to_hosts", "limit_load_to_hosts=", "limit_load_to_session_type", "limit_load_to_session_type=", "load_from", "lookup_provider_constant", "low_priority_io", "low_priority_io=", "mach_services", "mach_services=", "method", "method_missing", "methods", "mode", "mode=", "name", "name=", "nice", "nice=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "on_demand", "on_demand=", "only_if", "only_if_args", "owner", "owner=", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "process_type", "process_type=", "program", "program=", "program_arguments", "program_arguments=", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "queue_directories", "queue_directories=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "root_directory", "root_directory=", "run_action", "run_at_load", "run_at_load=", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "session_type", "session_type=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "sockets", "sockets=", "soft_resource_limits", "soft_resource_limits=", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "standard_error_path", "standard_error_path=", "standard_in_path", "standard_in_path=", "standard_out_path", "standard_out_path=", "start_calendar_interval", "start_calendar_interval=", "start_interval", "start_interval=", "start_on_mount", "start_on_mount=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "throttle_interval", "throttle_interval=", "time_out", "time_out=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "type", "type=", "umask", "umask=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "wait_for_debugger", "wait_for_debugger=", "watch_paths", "watch_paths=", "with_os_architecture", "working_directory", "working_directory=", "wow64_architecture_override_required?", "wow64_directory" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "target_file=", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "layout", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "raid_device=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "device_type", "disable_wow64_file_redirection", "display", "docker?", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "osx_profile": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identifier", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "profile", "profile_name", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "show_progress", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "docker?", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "name=", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "target=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_binary", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "systemd_unit": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "active", "active=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enabled=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "masked=", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "static", "static=", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_ini", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "triggers_reload", "triggers_reload=", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "user=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "unresolved_subscribes": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "installer_type", "installer_type=", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remote_file_attributes=", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "returns=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "flush_cache=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_binary", "yum_binary=" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.1.0.json0000644000004100000410000100355313005226016021705 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "dclone", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "ffi_yajl", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "itself", "key?", "keys", "kind_of?", "lazy", "loaded_recipe", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "rm", "rm_default", "rm_normal", "rm_override", "role?", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "select_run_list", "send", "set", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "tag", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "compile_time", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key_name", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "members", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "link_type", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_from", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_from", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "local", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verify" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "iterations", "itself", "kind_of?", "lazy", "load_from", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "state", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.15.19.json0000644000004100000410000147532713005226016022100 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "a_to_s", "add_machine_options", "aix_user", "apply_expansion_attributes", "apt_package", "apt_repository", "apt_update", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "build_resource", "cab_package", "chef_acl", "chef_client", "chef_container", "chef_data_bag", "chef_data_bag_item", "chef_environment", "chef_environment=", "chef_gem", "chef_group", "chef_mirror", "chef_node", "chef_organization", "chef_role", "chef_server_rest", "chef_server_rest=", "chef_user", "chocolatey_package", "class", "class_from_file", "clean_array", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "control_group", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "current_image_options", "current_machine_options", "data_bag", "data_bag_item", "dclone", "declare_resource", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_resource", "delete_resource!", "deploy", "deploy_branch", "deploy_revision", "describe_self_for_error", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "docker?", "dpkg_package", "dsc_resource", "dsc_script", "dscl_user", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "edit_resource", "edit_resource!", "encrypted?", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "find_resource", "find_resource!", "for_json", "force_default!", "force_override!", "forced_32bit_override_required?", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "get_private_key", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "include_recipe", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key?", "keys", "kind_of?", "ksh", "l_w_r_p_base", "launchd", "lazy", "link", "linux_user", "load_balancer", "load_recipe", "loaded_recipe", "log", "machine", "machine_batch", "machine_execute", "machine_file", "machine_image", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "notifying_block", "object_id", "ohai", "openbsd_package", "osx_config_profile", "osx_profile", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_key", "private_methods", "protected_methods", "ps_credential", "psych_to_yaml", "public_key", "public_method", "public_methods", "public_send", "pw_user", "python", "read", "read!", "reboot", "reboot_pending?", "recipe?", "recipe_list", "recipe_list=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key", "registry_key_exists?", "registry_value_exists?", "remote_directory", "remote_file", "remove_instance_variable", "require_recipe", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "search", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "solaris_user", "subcontext_block", "subversion", "systemd_unit", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "unlink", "unlink!", "untaint", "untrust", "untrusted?", "update_from!", "user", "user_resource_abstract_base_class", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "windows_user", "with_chef_data_bag", "with_chef_data_bag_item_encryption", "with_chef_environment", "with_chef_local_server", "with_chef_server", "with_driver", "with_image_options", "with_machine_options", "with_os_architecture", "with_run_context", "wow64_architecture_override_required?", "wow64_directory", "write", "write!", "yum_package", "yum_repository", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<", "<=", "<=>", "==", "===", "=~", ">", ">=", "[]", "[]=", "__id__", "__send__", "a_to_s", "all?", "any?", "apply_expansion_attributes", "assert_valid_windows_architecture!", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "chunk_while", "class", "class_from_file", "clean_array", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "dig", "disable_wow64_file_redirection", "display", "display_hash", "docker?", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "exist?", "expand!", "extend", "fetch", "fetch_values", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "forced_32bit_override_required?", "freeze", "from_file", "frozen?", "gem", "grep", "grep_v", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "read", "read!", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_proc", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "unlink", "unlink!", "untaint", "untrust", "untrusted?", "update", "update_from!", "valid_windows_architecture?", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "write", "write!", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "apt_repository": [ "add", "nothing", "remove" ], "apt_update": [ "nothing", "periodic", "update" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "cab_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "chocolatey_package": [ "install", "nothing", "purge", "reconfig", "remove", "uninstall", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ksh": [ "nothing", "run" ], "launchd": [ "create", "create_if_missing", "delete", "disable", "enable", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "osx_profile": [ "install", "nothing", "remove" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "systemd_unit": [ "create", "delete", "disable", "enable", "mask", "nothing", "reload", "reload_or_restart", "reload_or_try_restart", "restart", "start", "stop", "try_restart", "unmask" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "unresolved_subscribes": [ "nothing" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "yum_repository": [ "add", "create", "delete", "makecache", "nothing", "remove" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "default_release=", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_repository": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "cache_rebuild", "cache_rebuild=", "class", "clean_array", "clone", "components", "components=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "deb_src", "deb_src=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distribution", "distribution=", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "key_proxy", "key_proxy=", "keyserver", "keyserver=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "repo_name", "repo_name=", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "trusted", "trusted=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri", "uri=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_update": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frequency", "frequency=", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cab_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clear_sources", "clear_sources=", "clone", "compile_time", "compile_time=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chocolatey_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clean_array", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "command", "command=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_action", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "easy_install_binary", "easy_install_binary=", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "module_name=", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "python_binary=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key_name", "key_name=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clean_array", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clear_sources", "clear_sources=", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "branch", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group_name", "group_name=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "homebrew_user=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "before_notifications", "bootproto", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "name=", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "accept_license", "accept_license=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ksh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "launchd": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "abandon_process_group", "abandon_process_group=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "backup", "backup=", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "debug", "debug=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "disabled", "disabled=", "display", "docker?", "dup", "elapsed_time", "enable_globbing", "enable_globbing=", "enable_transactions", "enable_transactions=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment_variables", "environment_variables=", "epic_fail", "eql?", "equal?", "events", "exit_timeout", "exit_timeout=", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "group=", "guard_interpreter", "hard_resource_limits", "hard_resource_limits=", "hash", "hash=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inetd_compatibility", "inetd_compatibility=", "inherits", "init_groups", "init_groups=", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_alive", "keep_alive=", "kind_of?", "label", "label=", "launch_only_once", "launch_only_once=", "lazy", "ld_group", "ld_group=", "limit_load_from_hosts", "limit_load_from_hosts=", "limit_load_to_hosts", "limit_load_to_hosts=", "limit_load_to_session_type", "limit_load_to_session_type=", "load_from", "lookup_provider_constant", "low_priority_io", "low_priority_io=", "mach_services", "mach_services=", "method", "method_missing", "methods", "mode", "mode=", "name", "name=", "nice", "nice=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "on_demand", "on_demand=", "only_if", "only_if_args", "owner", "owner=", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "process_type", "process_type=", "program", "program=", "program_arguments", "program_arguments=", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "queue_directories", "queue_directories=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "root_directory", "root_directory=", "run_action", "run_at_load", "run_at_load=", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "session_type", "session_type=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "sockets", "sockets=", "soft_resource_limits", "soft_resource_limits=", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "standard_error_path", "standard_error_path=", "standard_in_path", "standard_in_path=", "standard_out_path", "standard_out_path=", "start_calendar_interval", "start_calendar_interval=", "start_interval", "start_interval=", "start_on_mount", "start_on_mount=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "throttle_interval", "throttle_interval=", "time_out", "time_out=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "type", "type=", "umask", "umask=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "wait_for_debugger", "wait_for_debugger=", "watch_paths", "watch_paths=", "with_os_architecture", "working_directory", "working_directory=", "wow64_architecture_override_required?", "wow64_directory" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "target_file=", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "bitmap", "chunk", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "layout", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "raid_device=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "device_type", "disable_wow64_file_redirection", "display", "docker?", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "osx_profile": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identifier", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "profile", "profile_name", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clean_array", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "show_progress", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "docker?", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "name=", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "target=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_binary", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "systemd_unit": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "active", "active=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enabled=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "masked=", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "static", "static=", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_ini", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "triggers_reload", "triggers_reload=", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "user=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clean_array", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "unresolved_subscribes": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "before_notifications", "checksum", "checksum=", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "installer_type", "installer_type=", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remote_file_attributes=", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "returns=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "flush_cache=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_binary", "yum_binary=" ], "yum_repository": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "baseurl", "baseurl=", "before_notifications", "class", "clean_array", "clean_headers", "clean_headers=", "clean_metadata", "clean_metadata=", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cost", "cost=", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "description", "description=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enabled=", "enablegroups", "enablegroups=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exclude", "exclude=", "extend", "failovermethod", "failovermethod=", "fastestmirror_enabled", "fastestmirror_enabled=", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gpgcheck", "gpgcheck=", "gpgkey", "gpgkey=", "guard_interpreter", "hash", "http_caching", "http_caching=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "include_config", "include_config=", "includepkgs", "includepkgs=", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keepalive", "keepalive=", "keyurl", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "make_cache", "make_cache=", "max_retries", "max_retries=", "metadata_expire", "metadata_expire=", "method", "method_missing", "methods", "mirror_expire", "mirror_expire=", "mirrorexpire", "mirrorexpire=", "mirrorlist", "mirrorlist=", "mirrorlist_expire", "mirrorlist_expire=", "mode", "mode=", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "params", "params=", "password", "password=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "priority=", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "proxy", "proxy=", "proxy_password", "proxy_password=", "proxy_username", "proxy_username=", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "repo_gpgcheck", "repo_gpgcheck=", "report_instanceid", "report_instanceid=", "repositoryid", "repositoryid=", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "skip_if_unavailable", "skip_if_unavailable=", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "sslcacert", "sslcacert=", "sslclientcert", "sslclientcert=", "sslclientkey", "sslclientkey=", "sslverify", "sslverify=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.4.0.json0000644000004100000410000120231213005226016021702 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "apt_package", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "chef_environment", "chef_environment=", "chef_gem", "chef_server_rest", "chef_server_rest=", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "dclone", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "deploy", "deploy_branch", "deploy_revision", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "dpkg_package", "dsc_resource", "dsc_script", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key?", "keys", "kind_of?", "l_w_r_p_base", "lazy", "link", "loaded_recipe", "log", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "ohai", "openbsd_package", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "python", "reboot", "recipe?", "recipe_list", "recipe_list=", "registry_key", "remote_directory", "remote_file", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "subversion", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "user", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "with_os_architecture", "wow64_architecture_override_required?", "yum_package", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clear_sources", "clone", "compile_time", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify", "with_os_architecture", "wow64_architecture_override_required?" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key_name", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify", "with_os_architecture", "wow64_architecture_override_required?" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clear_sources", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device_type", "disable_wow64_file_redirection", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify", "with_os_architecture", "wow64_architecture_override_required?" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verify", "with_os_architecture", "wow64_architecture_override_required?" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "checksum", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.9.38.json0000644000004100000410000137774413005226016022030 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "add_machine_options", "apply_expansion_attributes", "apt_package", "apt_repository", "apt_update", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "build_resource", "chef_acl", "chef_client", "chef_container", "chef_data_bag", "chef_environment", "chef_environment=", "chef_gem", "chef_group", "chef_mirror", "chef_node", "chef_organization", "chef_role", "chef_server_rest", "chef_server_rest=", "chef_user", "chocolatey_package", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "control_group", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "current_image_options", "current_machine_options", "data_bag", "data_bag_item", "dclone", "declare_resource", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "deploy", "deploy_branch", "deploy_revision", "describe_self_for_error", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "dpkg_package", "dsc_resource", "dsc_script", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "encrypted?", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "forced_32bit_override_required?", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "get_private_key", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "include_recipe", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key?", "keys", "kind_of?", "ksh", "l_w_r_p_base", "launchd", "lazy", "link", "load_balancer", "load_recipe", "loaded_recipe", "log", "machine", "machine_batch", "machine_execute", "machine_file", "machine_image", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "ohai", "openbsd_package", "osx_config_profile", "osx_profile", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_key", "private_methods", "protected_methods", "ps_credential", "psych_to_yaml", "public_key", "public_method", "public_methods", "public_send", "python", "reboot", "reboot_pending?", "recipe?", "recipe_list", "recipe_list=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key", "registry_key_exists?", "registry_value_exists?", "remote_directory", "remote_file", "remove_instance_variable", "require_recipe", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "search", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "subversion", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "user", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "with_chef_data_bag", "with_chef_data_bag_item_encryption", "with_chef_environment", "with_chef_local_server", "with_chef_server", "with_driver", "with_image_options", "with_machine_options", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_package", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<", "<=", "<=>", "==", "===", "=~", ">", ">=", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "chunk_while", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "dig", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "fetch_values", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "grep_v", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_proc", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "apt_repository": [ "add", "nothing", "remove" ], "apt_update": [ "nothing", "periodic", "update" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "chocolatey_package": [ "install", "nothing", "purge", "reconfig", "remove", "uninstall", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ksh": [ "nothing", "run" ], "launchd": [ "create", "create_if_missing", "delete", "disable", "enable", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "osx_profile": [ "install", "nothing", "remove" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "default_release=", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_repository": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "cache_rebuild", "cache_rebuild=", "class", "clone", "components", "components=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "deb_src", "deb_src=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distribution", "distribution=", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "key_proxy", "key_proxy=", "keyserver", "keyserver=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "repo_name", "repo_name=", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "trusted", "trusted=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri", "uri=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_update": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frequency", "frequency=", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "compile_time", "compile_time=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chocolatey_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "command=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_action", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "easy_install_binary", "easy_install_binary=", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "module_name=", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "python_binary=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key_name", "key_name=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group_name", "group_name=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "homebrew_user=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "before_notifications", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "name=", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "accept_license=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ksh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "launchd": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "abandon_process_group", "abandon_process_group=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "backup", "backup=", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "debug", "debug=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "disabled", "disabled=", "display", "dup", "elapsed_time", "enable_globbing", "enable_globbing=", "enable_transactions", "enable_transactions=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment_variables", "environment_variables=", "epic_fail", "eql?", "equal?", "events", "exit_timeout", "exit_timeout=", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "group=", "guard_interpreter", "hard_resource_limits", "hard_resource_limits=", "hash", "hash=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inetd_compatibility", "inetd_compatibility=", "init_groups", "init_groups=", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_alive", "keep_alive=", "kind_of?", "label", "label=", "launch_only_once", "launch_only_once=", "lazy", "ld_group", "ld_group=", "limit_load_from_hosts", "limit_load_from_hosts=", "limit_load_to_hosts", "limit_load_to_hosts=", "limit_load_to_session_type", "limit_load_to_session_type=", "load_from", "lookup_provider_constant", "low_priority_io", "low_priority_io=", "mach_services", "mach_services=", "method", "method_missing", "methods", "mode", "mode=", "name", "name=", "nice", "nice=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "on_demand", "on_demand=", "only_if", "only_if_args", "owner", "owner=", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "process_type", "process_type=", "program", "program=", "program_arguments", "program_arguments=", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "queue_directories", "queue_directories=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "root_directory", "root_directory=", "run_action", "run_at_load", "run_at_load=", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "session_type", "session_type=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "sockets", "sockets=", "soft_resource_limits", "soft_resource_limits=", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "standard_error_path", "standard_error_path=", "standard_in_path", "standard_in_path=", "standard_out_path", "standard_out_path=", "start_calendar_interval", "start_calendar_interval=", "start_interval", "start_interval=", "start_on_mount", "start_on_mount=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "throttle_interval", "throttle_interval=", "time_out", "time_out=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "type", "type=", "umask", "umask=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "wait_for_debugger", "wait_for_debugger=", "watch_paths", "watch_paths=", "with_os_architecture", "working_directory", "working_directory=", "wow64_architecture_override_required?", "wow64_directory" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "target_file=", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "raid_device=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "device_type", "disable_wow64_file_redirection", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "osx_profile": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identifier", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "profile", "profile_name", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "show_progress", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "name=", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "target=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_binary", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "installer_type=", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remote_file_attributes=", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "returns=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "flush_cache=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_binary", "yum_binary=" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.4.1.json0000644000004100000410000120231213005226016021703 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "apt_package", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "chef_environment", "chef_environment=", "chef_gem", "chef_server_rest", "chef_server_rest=", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "dclone", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "deploy", "deploy_branch", "deploy_revision", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "dpkg_package", "dsc_resource", "dsc_script", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key?", "keys", "kind_of?", "l_w_r_p_base", "lazy", "link", "loaded_recipe", "log", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "ohai", "openbsd_package", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "python", "reboot", "recipe?", "recipe_list", "recipe_list=", "registry_key", "remote_directory", "remote_file", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "subversion", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "user", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "with_os_architecture", "wow64_architecture_override_required?", "yum_package", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clear_sources", "clone", "compile_time", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify", "with_os_architecture", "wow64_architecture_override_required?" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key_name", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify", "with_os_architecture", "wow64_architecture_override_required?" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clear_sources", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device_type", "disable_wow64_file_redirection", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify", "with_os_architecture", "wow64_architecture_override_required?" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verify", "with_os_architecture", "wow64_architecture_override_required?" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "checksum", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.3.0.json0000644000004100000410000102312013005226016021677 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "dclone", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "ffi_yajl", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "itself", "key?", "keys", "kind_of?", "lazy", "loaded_recipe", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "rm", "rm_default", "rm_normal", "rm_override", "role?", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "select_run_list", "send", "set", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "tag", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clear_sources", "clone", "compile_time", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key_name", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clear_sources", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "members", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "link_type", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_from", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "session_type", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_from", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "local", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verify" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "iterations", "itself", "kind_of?", "lazy", "load_from", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_context", "run_context=", "running", "search", "send", "sensitive", "sensitive=", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "state", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_from", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.5.1.json0000644000004100000410000124533213005226016021715 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "apt_package", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "chef_environment", "chef_environment=", "chef_gem", "chef_server_rest", "chef_server_rest=", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "dclone", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "deploy", "deploy_branch", "deploy_revision", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "dpkg_package", "dsc_resource", "dsc_script", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "forced_32bit_override_required?", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key?", "keys", "kind_of?", "l_w_r_p_base", "lazy", "link", "loaded_recipe", "log", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "ohai", "openbsd_package", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "python", "reboot", "recipe?", "recipe_list", "recipe_list=", "registry_key", "remote_directory", "remote_file", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "subversion", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "user", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_package", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clear_sources", "clone", "compile_time", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "command", "command=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key_name", "key_name=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clear_sources", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group_name", "group_name=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "name=", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "target_file=", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "raid_device=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "device_type", "disable_wow64_file_redirection", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "forced_32bit_override_required?", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "name=", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "target=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_binary", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "checksum", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_binary" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.12.13.json0000644000004100000410000142613013005226016022053 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "add_machine_options", "apply_expansion_attributes", "apt_package", "apt_repository", "apt_update", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "build_resource", "chef_acl", "chef_client", "chef_container", "chef_data_bag", "chef_environment", "chef_environment=", "chef_gem", "chef_group", "chef_mirror", "chef_node", "chef_organization", "chef_role", "chef_server_rest", "chef_server_rest=", "chef_user", "chocolatey_package", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "control_group", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "current_image_options", "current_machine_options", "data_bag", "data_bag_item", "dclone", "declare_resource", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_resource", "delete_resource!", "deploy", "deploy_branch", "deploy_revision", "describe_self_for_error", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "docker?", "dpkg_package", "dsc_resource", "dsc_script", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "edit_resource", "edit_resource!", "encrypted?", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "find_resource", "find_resource!", "for_json", "force_default!", "force_override!", "forced_32bit_override_required?", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "get_private_key", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "include_recipe", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key?", "keys", "kind_of?", "ksh", "l_w_r_p_base", "launchd", "lazy", "link", "load_balancer", "load_recipe", "loaded_recipe", "log", "machine", "machine_batch", "machine_execute", "machine_file", "machine_image", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "notifying_block", "object_id", "ohai", "openbsd_package", "osx_config_profile", "osx_profile", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_key", "private_methods", "protected_methods", "ps_credential", "psych_to_yaml", "public_key", "public_method", "public_methods", "public_send", "python", "read", "read!", "reboot", "reboot_pending?", "recipe?", "recipe_list", "recipe_list=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key", "registry_key_exists?", "registry_value_exists?", "remote_directory", "remote_file", "remove_instance_variable", "require_recipe", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "search", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "subcontext_block", "subversion", "systemd_unit", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "unlink", "unlink!", "untaint", "untrust", "untrusted?", "update_from!", "user", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "with_chef_data_bag", "with_chef_data_bag_item_encryption", "with_chef_environment", "with_chef_local_server", "with_chef_server", "with_driver", "with_image_options", "with_machine_options", "with_os_architecture", "with_run_context", "wow64_architecture_override_required?", "wow64_directory", "write", "write!", "yum_package", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<", "<=", "<=>", "==", "===", "=~", ">", ">=", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assert_valid_windows_architecture!", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "chunk_while", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "dig", "disable_wow64_file_redirection", "display", "display_hash", "docker?", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "exist?", "expand!", "extend", "fetch", "fetch_values", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "forced_32bit_override_required?", "freeze", "from_file", "frozen?", "gem", "grep", "grep_v", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "read", "read!", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_proc", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "unlink", "unlink!", "untaint", "untrust", "untrusted?", "update", "update_from!", "valid_windows_architecture?", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "write", "write!", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "apt_repository": [ "add", "nothing", "remove" ], "apt_update": [ "nothing", "periodic", "update" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "chocolatey_package": [ "install", "nothing", "purge", "reconfig", "remove", "uninstall", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ksh": [ "nothing", "run" ], "launchd": [ "create", "create_if_missing", "delete", "disable", "enable", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "osx_profile": [ "install", "nothing", "remove" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "systemd_unit": [ "create", "delete", "disable", "enable", "mask", "nothing", "reload", "reload_or_restart", "reload_or_try_restart", "restart", "start", "stop", "try_restart", "unmask" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "default_release=", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_repository": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "cache_rebuild", "cache_rebuild=", "class", "clone", "components", "components=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "deb_src", "deb_src=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distribution", "distribution=", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "key_proxy", "key_proxy=", "keyserver", "keyserver=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "repo_name", "repo_name=", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "trusted", "trusted=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri", "uri=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_update": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frequency", "frequency=", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "compile_time", "compile_time=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chocolatey_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "command=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_action", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "easy_install_binary", "easy_install_binary=", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "module_name=", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "python_binary=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key_name", "key_name=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group_name", "group_name=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "homebrew_user=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "before_notifications", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "name=", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "accept_license=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ksh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "launchd": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "abandon_process_group", "abandon_process_group=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "backup", "backup=", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "debug", "debug=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "disabled", "disabled=", "display", "docker?", "dup", "elapsed_time", "enable_globbing", "enable_globbing=", "enable_transactions", "enable_transactions=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment_variables", "environment_variables=", "epic_fail", "eql?", "equal?", "events", "exit_timeout", "exit_timeout=", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "group=", "guard_interpreter", "hard_resource_limits", "hard_resource_limits=", "hash", "hash=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inetd_compatibility", "inetd_compatibility=", "inherits", "init_groups", "init_groups=", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_alive", "keep_alive=", "kind_of?", "label", "label=", "launch_only_once", "launch_only_once=", "lazy", "ld_group", "ld_group=", "limit_load_from_hosts", "limit_load_from_hosts=", "limit_load_to_hosts", "limit_load_to_hosts=", "limit_load_to_session_type", "limit_load_to_session_type=", "load_from", "lookup_provider_constant", "low_priority_io", "low_priority_io=", "mach_services", "mach_services=", "method", "method_missing", "methods", "mode", "mode=", "name", "name=", "nice", "nice=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "on_demand", "on_demand=", "only_if", "only_if_args", "owner", "owner=", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "process_type", "process_type=", "program", "program=", "program_arguments", "program_arguments=", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "queue_directories", "queue_directories=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "root_directory", "root_directory=", "run_action", "run_at_load", "run_at_load=", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "session_type", "session_type=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "sockets", "sockets=", "soft_resource_limits", "soft_resource_limits=", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "standard_error_path", "standard_error_path=", "standard_in_path", "standard_in_path=", "standard_out_path", "standard_out_path=", "start_calendar_interval", "start_calendar_interval=", "start_interval", "start_interval=", "start_on_mount", "start_on_mount=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "throttle_interval", "throttle_interval=", "time_out", "time_out=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "type", "type=", "umask", "umask=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "wait_for_debugger", "wait_for_debugger=", "watch_paths", "watch_paths=", "with_os_architecture", "working_directory", "working_directory=", "wow64_architecture_override_required?", "wow64_directory" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "target_file=", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "layout", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "raid_device=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "device_type", "disable_wow64_file_redirection", "display", "docker?", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "osx_profile": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identifier", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "profile", "profile_name", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "show_progress", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "docker?", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "name=", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "target=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_binary", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "systemd_unit": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "active", "active=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enabled=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "masked=", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "static", "static=", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_ini", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "triggers_reload", "triggers_reload=", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "user=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "installer_type", "installer_type=", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remote_file_attributes=", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "returns=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "flush_cache=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_binary", "yum_binary=" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.14.89.json0000644000004100000410000146274513005226016022106 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "a_to_s", "add_machine_options", "aix_user", "apply_expansion_attributes", "apt_package", "apt_repository", "apt_update", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "build_resource", "chef_acl", "chef_client", "chef_container", "chef_data_bag", "chef_data_bag_item", "chef_environment", "chef_environment=", "chef_gem", "chef_group", "chef_mirror", "chef_node", "chef_organization", "chef_role", "chef_server_rest", "chef_server_rest=", "chef_user", "chocolatey_package", "class", "class_from_file", "clean_array", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "control_group", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "current_image_options", "current_machine_options", "data_bag", "data_bag_item", "dclone", "declare_resource", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_resource", "delete_resource!", "deploy", "deploy_branch", "deploy_revision", "describe_self_for_error", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "docker?", "dpkg_package", "dsc_resource", "dsc_script", "dscl_user", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "edit_resource", "edit_resource!", "encrypted?", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "find_resource", "find_resource!", "for_json", "force_default!", "force_override!", "forced_32bit_override_required?", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "get_private_key", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "include_recipe", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key?", "keys", "kind_of?", "ksh", "l_w_r_p_base", "launchd", "lazy", "link", "linux_user", "load_balancer", "load_recipe", "loaded_recipe", "log", "machine", "machine_batch", "machine_execute", "machine_file", "machine_image", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "notifying_block", "object_id", "ohai", "openbsd_package", "osx_config_profile", "osx_profile", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_key", "private_methods", "protected_methods", "ps_credential", "psych_to_yaml", "public_key", "public_method", "public_methods", "public_send", "pw_user", "python", "read", "read!", "reboot", "reboot_pending?", "recipe?", "recipe_list", "recipe_list=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key", "registry_key_exists?", "registry_value_exists?", "remote_directory", "remote_file", "remove_instance_variable", "require_recipe", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "search", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "solaris_user", "subcontext_block", "subversion", "systemd_unit", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "unlink", "unlink!", "untaint", "untrust", "untrusted?", "update_from!", "user", "user_resource_abstract_base_class", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "windows_user", "with_chef_data_bag", "with_chef_data_bag_item_encryption", "with_chef_environment", "with_chef_local_server", "with_chef_server", "with_driver", "with_image_options", "with_machine_options", "with_os_architecture", "with_run_context", "wow64_architecture_override_required?", "wow64_directory", "write", "write!", "yum_package", "yum_repository", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<", "<=", "<=>", "==", "===", "=~", ">", ">=", "[]", "[]=", "__id__", "__send__", "a_to_s", "all?", "any?", "apply_expansion_attributes", "assert_valid_windows_architecture!", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "chunk_while", "class", "class_from_file", "clean_array", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "dig", "disable_wow64_file_redirection", "display", "display_hash", "docker?", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "exist?", "expand!", "extend", "fetch", "fetch_values", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "forced_32bit_override_required?", "freeze", "from_file", "frozen?", "gem", "grep", "grep_v", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "read", "read!", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_proc", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "unlink", "unlink!", "untaint", "untrust", "untrusted?", "update", "update_from!", "valid_windows_architecture?", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "write", "write!", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "apt_repository": [ "add", "nothing", "remove" ], "apt_update": [ "nothing", "periodic", "update" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "chocolatey_package": [ "install", "nothing", "purge", "reconfig", "remove", "uninstall", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ksh": [ "nothing", "run" ], "launchd": [ "create", "create_if_missing", "delete", "disable", "enable", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "osx_profile": [ "install", "nothing", "remove" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "systemd_unit": [ "create", "delete", "disable", "enable", "mask", "nothing", "reload", "reload_or_restart", "reload_or_try_restart", "restart", "start", "stop", "try_restart", "unmask" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "unresolved_subscribes": [ "nothing" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "mask", "nothing", "reload", "restart", "start", "stop", "unmask" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "yum_repository": [ "add", "create", "delete", "makecache", "nothing", "remove" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "default_release=", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_repository": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "cache_rebuild", "cache_rebuild=", "class", "clean_array", "clone", "components", "components=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "deb_src", "deb_src=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distribution", "distribution=", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "key_proxy", "key_proxy=", "keyserver", "keyserver=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "repo_name", "repo_name=", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "trusted", "trusted=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri", "uri=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_update": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frequency", "frequency=", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clear_sources", "clear_sources=", "clone", "compile_time", "compile_time=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chocolatey_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clean_array", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "command", "command=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_action", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "easy_install_binary", "easy_install_binary=", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "module_name=", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "python_binary=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key_name", "key_name=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clean_array", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clear_sources", "clear_sources=", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "branch", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group_name", "group_name=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "homebrew_user=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "before_notifications", "bootproto", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "name=", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "accept_license", "accept_license=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ksh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "launchd": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "abandon_process_group", "abandon_process_group=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "backup", "backup=", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook=", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "debug", "debug=", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "disabled", "disabled=", "display", "docker?", "dup", "elapsed_time", "enable_globbing", "enable_globbing=", "enable_transactions", "enable_transactions=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment_variables", "environment_variables=", "epic_fail", "eql?", "equal?", "events", "exit_timeout", "exit_timeout=", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "group=", "guard_interpreter", "hard_resource_limits", "hard_resource_limits=", "hash", "hash=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inetd_compatibility", "inetd_compatibility=", "inherits", "init_groups", "init_groups=", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_alive", "keep_alive=", "kind_of?", "label", "label=", "launch_only_once", "launch_only_once=", "lazy", "ld_group", "ld_group=", "limit_load_from_hosts", "limit_load_from_hosts=", "limit_load_to_hosts", "limit_load_to_hosts=", "limit_load_to_session_type", "limit_load_to_session_type=", "load_from", "lookup_provider_constant", "low_priority_io", "low_priority_io=", "mach_services", "mach_services=", "method", "method_missing", "methods", "mode", "mode=", "name", "name=", "nice", "nice=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "on_demand", "on_demand=", "only_if", "only_if_args", "owner", "owner=", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "process_type", "process_type=", "program", "program=", "program_arguments", "program_arguments=", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "queue_directories", "queue_directories=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "root_directory", "root_directory=", "run_action", "run_at_load", "run_at_load=", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "session_type", "session_type=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "sockets", "sockets=", "soft_resource_limits", "soft_resource_limits=", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "standard_error_path", "standard_error_path=", "standard_in_path", "standard_in_path=", "standard_out_path", "standard_out_path=", "start_calendar_interval", "start_calendar_interval=", "start_interval", "start_interval=", "start_on_mount", "start_on_mount=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "throttle_interval", "throttle_interval=", "time_out", "time_out=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "type", "type=", "umask", "umask=", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "wait_for_debugger", "wait_for_debugger=", "watch_paths", "watch_paths=", "with_os_architecture", "working_directory", "working_directory=", "wow64_architecture_override_required?", "wow64_directory" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "target_file=", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "bitmap", "chunk", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "layout", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "raid_device=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "device_type", "disable_wow64_file_redirection", "display", "docker?", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "osx_profile": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identifier", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "profile", "profile_name", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clean_array", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "show_progress", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "docker?", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "name=", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "target=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_binary", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "systemd_unit": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "active", "active=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enabled=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "masked=", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "static", "static=", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_ini", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "triggers_reload", "triggers_reload=", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "user=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clean_array", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "special_docker_files?", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "rights", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "unresolved_subscribes": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "before_notifications", "checksum", "checksum=", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "installer_type", "installer_type=", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remote_file_attributes=", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "returns=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "masked", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "flush_cache=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_binary", "yum_binary=" ], "yum_repository": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "baseurl", "baseurl=", "before_notifications", "class", "clean_array", "clean_headers", "clean_headers=", "clean_metadata", "clean_metadata=", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cost", "cost=", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "description", "description=", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enabled", "enabled=", "enablegroups", "enablegroups=", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exclude", "exclude=", "extend", "failovermethod", "failovermethod=", "fastestmirror_enabled", "fastestmirror_enabled=", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gpgcheck", "gpgcheck=", "gpgkey", "gpgkey=", "guard_interpreter", "hash", "http_caching", "http_caching=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "include_config", "include_config=", "includepkgs", "includepkgs=", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keepalive", "keepalive=", "keyurl", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "make_cache", "make_cache=", "max_retries", "max_retries=", "metadata_expire", "metadata_expire=", "method", "method_missing", "methods", "mirror_expire", "mirror_expire=", "mirrorexpire", "mirrorexpire=", "mirrorlist", "mirrorlist=", "mirrorlist_expire", "mirrorlist_expire=", "mode", "mode=", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "params", "params=", "password", "password=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "priority=", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "proxy", "proxy=", "proxy_password", "proxy_password=", "proxy_username", "proxy_username=", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "repo_gpgcheck", "repo_gpgcheck=", "report_instanceid", "report_instanceid=", "repositoryid", "repositoryid=", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "skip_if_unavailable", "skip_if_unavailable=", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "sslcacert", "sslcacert=", "sslclientcert", "sslclientcert=", "sslclientkey", "sslclientkey=", "sslverify", "sslverify=", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "a_to_s", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clean_array", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "docker?", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.0.3.json0000644000004100000410000076323213005226016021715 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "dclone", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "ffi_yajl", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "itself", "key?", "keys", "kind_of?", "lazy", "loaded_recipe", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "rm", "rm_default", "rm_normal", "rm_override", "role?", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "select_run_list", "send", "set", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "tag", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chunk", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key_name", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "sensitive", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "local", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "iterations", "itself", "kind_of?", "lazy", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "salt", "search", "send", "sensitive", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "installer_type", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "sensitive", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "state", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.0.1.json0000644000004100000410000075263713005226016021722 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "dclone", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "ffi_yajl", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "itself", "key?", "keys", "kind_of?", "lazy", "loaded_recipe", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "rm", "rm_default", "rm_normal", "rm_override", "role?", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "select_run_list", "send", "set", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "tag", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chunk", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key_name", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "key", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "sensitive", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "constantize", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "local", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "iterations", "itself", "kind_of?", "lazy", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "salt", "search", "send", "sensitive", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "installer_type", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "sensitive", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "state", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "itself", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "resolve_notification_references", "resource_name", "resources", "respond_to?", "response_file", "response_file_variables", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "sensitive", "set_or_return", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version" ] } }foodcritic-8.1.0/chef_dsl_metadata/chef_12.7.2.json0000644000004100000410000134612213005226016021717 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "add_machine_options", "apply_expansion_attributes", "apt_package", "apt_update", "assert_valid_windows_architecture!", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "bash", "batch", "bff_package", "breakpoint", "build_resource", "chef_acl", "chef_client", "chef_container", "chef_data_bag", "chef_environment", "chef_environment=", "chef_gem", "chef_group", "chef_mirror", "chef_node", "chef_organization", "chef_role", "chef_server_rest", "chef_server_rest=", "chef_user", "chocolatey_package", "class", "class_from_file", "clone", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_file", "create", "cron", "csh", "current_image_options", "current_machine_options", "dclone", "declare_resource", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "deploy", "deploy_branch", "deploy_revision", "destroy", "directory", "disable_wow64_file_redirection", "display", "display_hash", "dpkg_package", "dsc_resource", "dsc_script", "dup", "each", "each_attribute", "each_key", "each_value", "easy_install_package", "enum_for", "env", "environment", "eql?", "equal?", "erl_call", "evaluate_resource_definition", "execute", "expand!", "extend", "ffi_yajl", "file", "filename_to_qualified_string", "for_json", "force_default!", "force_override!", "forced_32bit_override_required?", "freebsd_package", "freeze", "from_file", "frozen?", "gem", "gem_package", "get_private_key", "git", "group", "has_key?", "has_resource_definition?", "hash", "homebrew_package", "http_request", "ifconfig", "include_attribute", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "ips_package", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key?", "keys", "kind_of?", "ksh", "l_w_r_p_base", "lazy", "link", "load_balancer", "loaded_recipe", "log", "machine", "machine_batch", "machine_execute", "machine_file", "machine_image", "macosx_service", "macports_package", "mdadm", "method", "method_missing", "methods", "mount", "name", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "normal", "normal!", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "ohai", "openbsd_package", "osx_config_profile", "osx_profile", "override", "override!", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "package", "pacman_package", "paludis_package", "parse_attribute_file_spec", "perl", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "portage_package", "powershell_out", "powershell_out!", "powershell_script", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_key", "private_methods", "protected_methods", "psych_to_yaml", "public_key", "public_method", "public_methods", "public_send", "python", "reboot", "recipe?", "recipe_list", "recipe_list=", "registry_key", "remote_directory", "remote_file", "remove_instance_variable", "reset_defaults_and_overrides", "respond_to?", "restore_wow64_file_redirection", "rm", "rm_default", "rm_normal", "rm_override", "role?", "route", "rpm_package", "ruby", "ruby_block", "run_command_compatible_options", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "scm", "script", "select_run_list", "send", "service", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "singleton_class", "singleton_method", "singleton_methods", "smartos_package", "snake_case_basename", "solaris_package", "subversion", "tag", "tags", "taint", "tainted?", "tap", "template", "timestamped_deploy", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "user", "valid_windows_architecture?", "validate", "value_for_platform", "value_for_platform_family", "whyrun_safe_ruby_block", "windows_package", "windows_script", "windows_service", "with_chef_data_bag", "with_chef_data_bag_item_encryption", "with_chef_environment", "with_chef_local_server", "with_chef_server", "with_driver", "with_image_options", "with_machine_options", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_package", "zypper_package" ], "node_methods": [ "!", "!=", "!~", "<", "<=", "<=>", "==", "===", "=~", ">", ">=", "[]", "[]=", "__id__", "__send__", "all?", "any?", "apply_expansion_attributes", "assoc", "attribute", "attribute?", "attributes", "automatic", "automatic=", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "chef_server_rest=", "chunk", "chunk_while", "class", "class_from_file", "clear", "clone", "collect", "collect_concat", "combined_default", "combined_override", "compare_by_identity", "compare_by_identity?", "constantize", "construct_attributes", "consume_attributes", "consume_chef_environment", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "count", "create", "cycle", "dclone", "debug_value", "deep_merge_cache", "deep_merge_cache=", "default", "default!", "default=", "default_attrs", "default_attrs=", "default_proc", "default_proc=", "default_unless", "define_singleton_method", "delete", "delete_if", "destroy", "detect", "dig", "display", "display_hash", "drop", "drop_while", "dup", "each", "each_attribute", "each_cons", "each_entry", "each_key", "each_pair", "each_slice", "each_value", "each_with_index", "each_with_object", "empty?", "entries", "enum_for", "env_default", "env_default=", "env_override", "env_override=", "environment", "eql?", "equal?", "except", "expand!", "extend", "fetch", "fetch_values", "ffi_yajl", "filename_to_qualified_string", "find", "find_all", "find_index", "first", "flat_map", "flatten", "for_json", "force_default", "force_default!", "force_default=", "force_override", "force_override!", "force_override=", "freeze", "from_file", "frozen?", "gem", "grep", "grep_v", "group_by", "has_key?", "has_value?", "hash", "immutablize", "include?", "include_attribute", "index", "inject", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "invert", "is_a?", "itself", "keep_if", "key", "key?", "keys", "kind_of?", "lazy", "length", "loaded_recipe", "map", "max", "max_by", "member?", "merge", "merge!", "merged_attributes", "method", "method_missing", "methods", "min", "min_by", "minmax", "minmax_by", "name", "nil?", "node", "none?", "normal", "normal!", "normal=", "normal_attrs", "normal_attrs=", "normal_unless", "normalize_snake_case_name", "object_id", "one?", "override", "override!", "override=", "override_attrs", "override_attrs=", "override_runlist", "override_runlist=", "override_unless", "parse_attribute_file_spec", "partition", "platform?", "platform_family?", "policy_group", "policy_group=", "policy_name", "policy_name=", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "primary_runlist", "private_methods", "protected_methods", "psych_to_yaml", "public_method", "public_methods", "public_send", "rassoc", "recipe?", "recipe_list", "recipe_list=", "reduce", "regular_update", "regular_writer", "rehash", "reject", "reject!", "remove_instance_variable", "replace", "reset", "reset_cache", "reset_defaults_and_overrides", "respond_to?", "reverse_each", "rm", "rm_default", "rm_normal", "rm_override", "role?", "role_default", "role_default=", "role_override", "role_override=", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "save_plist", "select", "select!", "select_run_list", "send", "set", "set_cookbook_attribute", "set_or_return", "set_unless", "set_unless?", "set_unless_value_present=", "shift", "singleton_class", "singleton_method", "singleton_methods", "size", "slice_after", "slice_before", "slice_when", "snake_case_basename", "sort", "sort_by", "store", "stringify_keys!", "symbolize_keys", "tag", "tags", "taint", "tainted?", "take", "take_while", "tap", "to_a", "to_enum", "to_h", "to_hash", "to_json", "to_plist", "to_proc", "to_s", "to_set", "to_yaml", "to_yaml_properties", "top_level_breadcrumb", "top_level_breadcrumb=", "trust", "untaint", "untrust", "untrusted?", "update", "update_from!", "validate", "value?", "value_for_platform", "value_for_platform_family", "values", "values_at", "zip" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "apt_update": [ "nothing", "periodic", "update" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "bff_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "chocolatey_package": [ "install", "nothing", "purge", "reconfig", "remove", "uninstall", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "dsc_resource": [ "nothing", "run" ], "dsc_script": [ "nothing", "run" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "homebrew_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ksh": [ "nothing", "run" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macosx_service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "openbsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "osx_profile": [ "install", "nothing", "remove" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "paludis_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "reboot": [ "cancel", "nothing", "reboot_now", "request_reboot" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smartos_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "solaris_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "whyrun_safe_ruby_block": [ "create", "nothing", "run" ], "windows_service": [ "configure_startup", "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "zypper_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "default_release", "default_release=", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "apt_update": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frequency", "frequency=", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "bff_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "compile_time", "compile_time=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "chocolatey_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "command=", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "day", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "home", "hour", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "time", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_resource": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "properties", "property", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_action", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "dsc_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "configuration_data", "configuration_data_script", "configuration_name", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "imports", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "ps_credential", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "easy_install_binary", "easy_install_binary=", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "module_name", "module_name=", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "python_binary", "python_binary=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key_name", "key_name=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "name_type", "nil?", "node", "node_name", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "supports_pkgng?", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clear_sources", "clear_sources=", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gem_binary", "gem_binary=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "excluded_members", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group_name", "group_name=", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "members", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "homebrew_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "homebrew_user", "homebrew_user=", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "bcast", "before_notifications", "bootproto", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "hwaddr", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inet_addr", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "name=", "network", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "accept_license=", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ksh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "link_type", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target_file", "target_file=", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "message", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macosx_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "plist", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "session_type", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "bitmap", "chunk", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "devices", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "level", "load_from", "lookup_provider_constant", "metadata", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "raid_device", "raid_device=", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "device=", "device_type", "disable_wow64_file_redirection", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "fsck_device", "fstype", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mount_point", "mounted", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "openbsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "osx_profile": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identifier", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "profile", "profile_name", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "paludis_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_boolean_return", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "reboot": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delay_mins", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reason", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "key", "key=", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "unscrubbed_values", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge", "reboot_pending?", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "guard_interpreter", "hash", "headers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "parse_source_args", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "device", "disable_wow64_file_redirection", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gateway", "gem", "guard_interpreter", "hash", "hostname", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "metric", "name", "name=", "netmask", "networking", "networking_ipv6", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "target", "target=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "smartos_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "solaris_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "destination=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repository", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_binary", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "atomic_update", "atomic_update=", "backup", "backup=", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "content", "content=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "diff", "diff=", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "final_checksum", "final_checksum=", "force_unlink", "force_unlink=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inherits", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "local", "lookup_provider_constant", "manage_symlink_source", "manage_symlink_source=", "method", "method_missing", "methods", "mode", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "path=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "verifications", "verifications=", "verify", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_migrate", "before_notifications", "before_restart", "before_symlink", "branch", "checkout_branch", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "depth", "destination", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enable_checkout", "enable_submodules", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "keep_releases", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "migrate", "migration_command", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "purge_before_symlink", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "remove_instance_variable", "repo", "repository", "repository=", "repository_cache", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_command_compatible_options", "run_context", "run_context=", "scm_provider", "search", "send", "sensitive", "sensitive=", "set_or_return", "shallow_clone", "shared_path", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "ssh_wrapper", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "comment", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "force", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "gid", "group", "guard_interpreter", "hash", "home", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "iterations", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "manage_home", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "non_unique", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "salt", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "username=", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "whyrun_safe_ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "block", "block_name", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "as_uri", "assert_valid_windows_architecture!", "before_notifications", "checksum", "checksum=", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "installer_type", "installer_type=", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote_file_attributes", "remote_file_attributes=", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "returns=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "uri_scheme?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "code", "command", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "cwd", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flags", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "group", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_guard_interpreter", "is_guard_interpreter=", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "live_stream", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "windows_service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "init_command", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "restart_command", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_as_password", "run_as_user", "run_command_compatible_options", "run_context", "run_context=", "run_levels", "running", "search", "send", "sensitive", "sensitive=", "service_name", "service_name=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "source_line_file", "source_line_number", "start_command", "startup_type", "state", "state_for_resource_reporter", "status_command", "stop_command", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allow_downgrade", "allow_downgrade=", "allowed_actions", "allowed_actions=", "arch", "arch=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "flush_cache", "flush_cache=", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory", "yum_binary", "yum_binary=" ], "zypper_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "action=", "after_created", "allowed_actions", "allowed_actions=", "as_json", "assert_valid_windows_architecture!", "before_notifications", "class", "clone", "constantize", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "current_value", "current_value_does_not_exist!", "custom_exception_message", "customize_exception", "data_bag", "data_bag_item", "dclone", "declared_key", "declared_type", "declared_type=", "default_guard_interpreter", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_attr", "deprecated_attr_reader", "deprecated_attr_writer", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "encrypted?", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "ffi_yajl", "filename_to_qualified_string", "forced_32bit_override_required?", "freeze", "frozen?", "gem", "guard_interpreter", "hash", "identity", "ignore_failure", "ignore_failure=", "immediate_notifications", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "is_i386_process_on_x86_64_windows?", "itself", "kind_of?", "lazy", "load_from", "lookup_provider_constant", "method", "method_missing", "methods", "name", "name=", "nil?", "node", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "normalize_snake_case_name", "not_if", "not_if_args", "notifies", "notifies_before", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "options=", "package_name", "package_name=", "params", "params=", "platform?", "platform_family?", "powershell_out", "powershell_out!", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "property_is_set?", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "public_method", "public_methods", "public_send", "reboot_pending?", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remove_instance_variable", "reset_property", "resolve_notification_references", "resource_initializing", "resource_initializing=", "resource_name", "resources", "respond_to?", "response_file", "response_file=", "response_file_variables", "response_file_variables=", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_command_compatible_options", "run_context", "run_context=", "search", "send", "sensitive", "sensitive=", "set_or_return", "shell_out", "shell_out!", "shell_out_with_systems_locale", "shell_out_with_systems_locale!", "should_skip?", "singleton_class", "singleton_method", "singleton_methods", "snake_case_basename", "source", "source=", "source_line", "source_line=", "source_line_file", "source_line_number", "state", "state_for_resource_reporter", "subscribes", "supports", "supports=", "taint", "tainted?", "tap", "timeout", "timeout=", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "version=", "with_os_architecture", "wow64_architecture_override_required?", "wow64_directory" ] } }