foodcritic 14.3.0 → 15.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/Rakefile +3 -3
- data/chef_dsl_metadata/{chef_13.11.3.json → chef_13.12.3.json} +0 -0
- data/chef_dsl_metadata/{chef_14.5.33.json → chef_14.7.17.json} +1231 -191
- data/foodcritic.gemspec +1 -1
- data/lib/foodcritic/api.rb +2 -2
- data/lib/foodcritic/domain.rb +2 -2
- data/lib/foodcritic/linter.rb +1 -1
- data/lib/foodcritic/rules/fc024.rb +1 -1
- data/lib/foodcritic/rules/fc042.rb +1 -1
- data/lib/foodcritic/version.rb +1 -1
- data/spec/functional/fc009_spec.rb +2 -2
- data/spec/unit/api_spec.rb +190 -190
- data/spec/unit/domain_spec.rb +3 -3
- data/spec/unit/linter_spec.rb +5 -5
- data/spec/unit/template_spec.rb +5 -5
- metadata +6 -12
- data/CHANGELOG.md +0 -780
- data/README.md +0 -79
- data/chef_dsl_metadata/chef_14.1.12.json +0 -26882
- data/chef_dsl_metadata/chef_14.2.0.json +0 -26904
- data/chef_dsl_metadata/chef_14.3.37.json +0 -27870
- data/chef_dsl_metadata/chef_14.4.56.json +0 -29761
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c62615bf3eef8460592338a963111572124c27437cceb14f03fe7dfc210ffde0
|
4
|
+
data.tar.gz: a33534bfe06a130db61887925bdfa5cc067e42c24e3f00a288c1f089ce9da34a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8d94ea9920bf332dd58ff193f8a80bfcca543568599484684f48caea6fefb42ed6a1ffa841aa42c1767c80ce896b7f0dd201b8fc40d6e8a534818882be27312
|
7
|
+
data.tar.gz: 9cef5c93d03b3c6d8f6810385016882343478e502d644375dec926e9fbe2407492bca4de016fae07179ad2dfdaf961b5ff65a1ce9aa160eaa3c8b091d440414c
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
@@ -20,7 +20,7 @@ require "cucumber/rake/task"
|
|
20
20
|
Cucumber::Rake::Task.new(:features) do |t|
|
21
21
|
t.cucumber_opts = %w{--strict}
|
22
22
|
t.cucumber_opts += %w{-f progress} unless ENV["CI"]
|
23
|
-
unless ENV.
|
23
|
+
unless ENV.key?("FC_FORK_PROCESS") && ENV["FC_FORK_PROCESS"] == "true"
|
24
24
|
t.cucumber_opts += ["-t", "~@build"]
|
25
25
|
t.cucumber_opts += ["-t", "~@context"]
|
26
26
|
end
|
@@ -39,10 +39,10 @@ task(:man) do
|
|
39
39
|
sh "ronn -w --roff man/*.ronn"
|
40
40
|
end
|
41
41
|
|
42
|
-
task :
|
42
|
+
task default: [:man, :test, :rubocop]
|
43
43
|
|
44
44
|
desc "Run all tests"
|
45
|
-
task :
|
45
|
+
task test: [:spec, :features]
|
46
46
|
|
47
47
|
desc "Regenerate regression test data"
|
48
48
|
task :regen_regression do
|
File without changes
|
@@ -340,6 +340,7 @@
|
|
340
340
|
"tainted?",
|
341
341
|
"tap",
|
342
342
|
"template",
|
343
|
+
"timezone",
|
343
344
|
"to_enum",
|
344
345
|
"to_hash",
|
345
346
|
"to_json",
|
@@ -361,10 +362,12 @@
|
|
361
362
|
"whyrun_safe_ruby_block",
|
362
363
|
"windows_ad_join",
|
363
364
|
"windows_auto_run",
|
365
|
+
"windows_certificate",
|
364
366
|
"windows_env",
|
365
367
|
"windows_feature",
|
366
368
|
"windows_feature_dism",
|
367
369
|
"windows_feature_powershell",
|
370
|
+
"windows_firewall_rule",
|
368
371
|
"windows_font",
|
369
372
|
"windows_package",
|
370
373
|
"windows_pagefile",
|
@@ -373,6 +376,7 @@
|
|
373
376
|
"windows_printer_port",
|
374
377
|
"windows_script",
|
375
378
|
"windows_service",
|
379
|
+
"windows_share",
|
376
380
|
"windows_shortcut",
|
377
381
|
"windows_task",
|
378
382
|
"windows_user",
|
@@ -1383,6 +1387,10 @@
|
|
1383
1387
|
"nothing",
|
1384
1388
|
"touch"
|
1385
1389
|
],
|
1390
|
+
"timezone": [
|
1391
|
+
"nothing",
|
1392
|
+
"set"
|
1393
|
+
],
|
1386
1394
|
"user": [
|
1387
1395
|
"create",
|
1388
1396
|
"lock",
|
@@ -1406,6 +1414,14 @@
|
|
1406
1414
|
"nothing",
|
1407
1415
|
"remove"
|
1408
1416
|
],
|
1417
|
+
"windows_certificate": [
|
1418
|
+
"acl_add",
|
1419
|
+
"create",
|
1420
|
+
"delete",
|
1421
|
+
"fetch",
|
1422
|
+
"nothing",
|
1423
|
+
"verify"
|
1424
|
+
],
|
1409
1425
|
"windows_env": [
|
1410
1426
|
"create",
|
1411
1427
|
"delete",
|
@@ -1430,6 +1446,11 @@
|
|
1430
1446
|
"nothing",
|
1431
1447
|
"remove"
|
1432
1448
|
],
|
1449
|
+
"windows_firewall_rule": [
|
1450
|
+
"create",
|
1451
|
+
"delete",
|
1452
|
+
"nothing"
|
1453
|
+
],
|
1433
1454
|
"windows_font": [
|
1434
1455
|
"install",
|
1435
1456
|
"nothing"
|
@@ -1469,19 +1490,17 @@
|
|
1469
1490
|
"stop",
|
1470
1491
|
"unmask"
|
1471
1492
|
],
|
1493
|
+
"windows_share": [
|
1494
|
+
"create",
|
1495
|
+
"delete",
|
1496
|
+
"nothing"
|
1497
|
+
],
|
1472
1498
|
"windows_shortcut": [
|
1473
1499
|
"create",
|
1474
1500
|
"nothing"
|
1475
1501
|
],
|
1476
1502
|
"windows_task": [
|
1477
|
-
"
|
1478
|
-
"create",
|
1479
|
-
"delete",
|
1480
|
-
"disable",
|
1481
|
-
"enable",
|
1482
|
-
"end",
|
1483
|
-
"nothing",
|
1484
|
-
"run"
|
1503
|
+
"nothing"
|
1485
1504
|
],
|
1486
1505
|
"windows_workgroup": [
|
1487
1506
|
"join",
|
@@ -1732,6 +1751,7 @@
|
|
1732
1751
|
"timeout",
|
1733
1752
|
"timeout=",
|
1734
1753
|
"to_enum",
|
1754
|
+
"to_h",
|
1735
1755
|
"to_hash",
|
1736
1756
|
"to_json",
|
1737
1757
|
"to_s",
|
@@ -1960,6 +1980,7 @@
|
|
1960
1980
|
"tainted?",
|
1961
1981
|
"tap",
|
1962
1982
|
"to_enum",
|
1983
|
+
"to_h",
|
1963
1984
|
"to_hash",
|
1964
1985
|
"to_json",
|
1965
1986
|
"to_s",
|
@@ -2198,6 +2219,7 @@
|
|
2198
2219
|
"tainted?",
|
2199
2220
|
"tap",
|
2200
2221
|
"to_enum",
|
2222
|
+
"to_h",
|
2201
2223
|
"to_hash",
|
2202
2224
|
"to_json",
|
2203
2225
|
"to_s",
|
@@ -2422,6 +2444,7 @@
|
|
2422
2444
|
"tainted?",
|
2423
2445
|
"tap",
|
2424
2446
|
"to_enum",
|
2447
|
+
"to_h",
|
2425
2448
|
"to_hash",
|
2426
2449
|
"to_json",
|
2427
2450
|
"to_s",
|
@@ -2674,6 +2697,7 @@
|
|
2674
2697
|
"timeout",
|
2675
2698
|
"timeout=",
|
2676
2699
|
"to_enum",
|
2700
|
+
"to_h",
|
2677
2701
|
"to_hash",
|
2678
2702
|
"to_json",
|
2679
2703
|
"to_s",
|
@@ -2932,6 +2956,7 @@
|
|
2932
2956
|
"timeout",
|
2933
2957
|
"timeout=",
|
2934
2958
|
"to_enum",
|
2959
|
+
"to_h",
|
2935
2960
|
"to_hash",
|
2936
2961
|
"to_json",
|
2937
2962
|
"to_s",
|
@@ -3167,6 +3192,7 @@
|
|
3167
3192
|
"timeout",
|
3168
3193
|
"timeout=",
|
3169
3194
|
"to_enum",
|
3195
|
+
"to_h",
|
3170
3196
|
"to_hash",
|
3171
3197
|
"to_json",
|
3172
3198
|
"to_s",
|
@@ -3387,6 +3413,7 @@
|
|
3387
3413
|
"tainted?",
|
3388
3414
|
"tap",
|
3389
3415
|
"to_enum",
|
3416
|
+
"to_h",
|
3390
3417
|
"to_hash",
|
3391
3418
|
"to_json",
|
3392
3419
|
"to_s",
|
@@ -3607,6 +3634,7 @@
|
|
3607
3634
|
"tainted?",
|
3608
3635
|
"tap",
|
3609
3636
|
"to_enum",
|
3637
|
+
"to_h",
|
3610
3638
|
"to_hash",
|
3611
3639
|
"to_json",
|
3612
3640
|
"to_s",
|
@@ -3838,6 +3866,7 @@
|
|
3838
3866
|
"timeout",
|
3839
3867
|
"timeout=",
|
3840
3868
|
"to_enum",
|
3869
|
+
"to_h",
|
3841
3870
|
"to_hash",
|
3842
3871
|
"to_json",
|
3843
3872
|
"to_s",
|
@@ -4079,6 +4108,7 @@
|
|
4079
4108
|
"timeout",
|
4080
4109
|
"timeout=",
|
4081
4110
|
"to_enum",
|
4111
|
+
"to_h",
|
4082
4112
|
"to_hash",
|
4083
4113
|
"to_json",
|
4084
4114
|
"to_s",
|
@@ -4306,6 +4336,7 @@
|
|
4306
4336
|
"tainted?",
|
4307
4337
|
"tap",
|
4308
4338
|
"to_enum",
|
4339
|
+
"to_h",
|
4309
4340
|
"to_hash",
|
4310
4341
|
"to_json",
|
4311
4342
|
"to_s",
|
@@ -4530,6 +4561,7 @@
|
|
4530
4561
|
"tainted?",
|
4531
4562
|
"tap",
|
4532
4563
|
"to_enum",
|
4564
|
+
"to_h",
|
4533
4565
|
"to_hash",
|
4534
4566
|
"to_json",
|
4535
4567
|
"to_s",
|
@@ -4764,6 +4796,7 @@
|
|
4764
4796
|
"timeout",
|
4765
4797
|
"timeout=",
|
4766
4798
|
"to_enum",
|
4799
|
+
"to_h",
|
4767
4800
|
"to_hash",
|
4768
4801
|
"to_json",
|
4769
4802
|
"to_s",
|
@@ -4994,6 +5027,7 @@
|
|
4994
5027
|
"tainted?",
|
4995
5028
|
"tap",
|
4996
5029
|
"to_enum",
|
5030
|
+
"to_h",
|
4997
5031
|
"to_hash",
|
4998
5032
|
"to_json",
|
4999
5033
|
"to_s",
|
@@ -5238,6 +5272,7 @@
|
|
5238
5272
|
"tainted?",
|
5239
5273
|
"tap",
|
5240
5274
|
"to_enum",
|
5275
|
+
"to_h",
|
5241
5276
|
"to_hash",
|
5242
5277
|
"to_json",
|
5243
5278
|
"to_s",
|
@@ -5478,6 +5513,7 @@
|
|
5478
5513
|
"time",
|
5479
5514
|
"time=",
|
5480
5515
|
"to_enum",
|
5516
|
+
"to_h",
|
5481
5517
|
"to_hash",
|
5482
5518
|
"to_json",
|
5483
5519
|
"to_s",
|
@@ -5699,6 +5735,7 @@
|
|
5699
5735
|
"tainted?",
|
5700
5736
|
"tap",
|
5701
5737
|
"to_enum",
|
5738
|
+
"to_h",
|
5702
5739
|
"to_hash",
|
5703
5740
|
"to_json",
|
5704
5741
|
"to_s",
|
@@ -5951,6 +5988,7 @@
|
|
5951
5988
|
"tainted?",
|
5952
5989
|
"tap",
|
5953
5990
|
"to_enum",
|
5991
|
+
"to_h",
|
5954
5992
|
"to_hash",
|
5955
5993
|
"to_json",
|
5956
5994
|
"to_s",
|
@@ -6207,6 +6245,7 @@
|
|
6207
6245
|
"timeout",
|
6208
6246
|
"timeout=",
|
6209
6247
|
"to_enum",
|
6248
|
+
"to_h",
|
6210
6249
|
"to_hash",
|
6211
6250
|
"to_json",
|
6212
6251
|
"to_s",
|
@@ -6437,6 +6476,7 @@
|
|
6437
6476
|
"tainted?",
|
6438
6477
|
"tap",
|
6439
6478
|
"to_enum",
|
6479
|
+
"to_h",
|
6440
6480
|
"to_hash",
|
6441
6481
|
"to_json",
|
6442
6482
|
"to_s",
|
@@ -6565,8 +6605,6 @@
|
|
6565
6605
|
"immediate_notifications",
|
6566
6606
|
"inherits",
|
6567
6607
|
"inspect",
|
6568
|
-
"installed",
|
6569
|
-
"installed=",
|
6570
6608
|
"instance_eval",
|
6571
6609
|
"instance_exec",
|
6572
6610
|
"instance_of?",
|
@@ -6683,6 +6721,7 @@
|
|
6683
6721
|
"tainted?",
|
6684
6722
|
"tap",
|
6685
6723
|
"to_enum",
|
6724
|
+
"to_h",
|
6686
6725
|
"to_hash",
|
6687
6726
|
"to_json",
|
6688
6727
|
"to_s",
|
@@ -6922,6 +6961,7 @@
|
|
6922
6961
|
"timeout",
|
6923
6962
|
"timeout=",
|
6924
6963
|
"to_enum",
|
6964
|
+
"to_h",
|
6925
6965
|
"to_hash",
|
6926
6966
|
"to_json",
|
6927
6967
|
"to_s",
|
@@ -7154,6 +7194,7 @@
|
|
7154
7194
|
"timeout",
|
7155
7195
|
"timeout=",
|
7156
7196
|
"to_enum",
|
7197
|
+
"to_h",
|
7157
7198
|
"to_hash",
|
7158
7199
|
"to_json",
|
7159
7200
|
"to_s",
|
@@ -7385,6 +7426,7 @@
|
|
7385
7426
|
"timeout",
|
7386
7427
|
"timeout=",
|
7387
7428
|
"to_enum",
|
7429
|
+
"to_h",
|
7388
7430
|
"to_hash",
|
7389
7431
|
"to_json",
|
7390
7432
|
"to_s",
|
@@ -7618,6 +7660,7 @@
|
|
7618
7660
|
"timeout",
|
7619
7661
|
"timeout=",
|
7620
7662
|
"to_enum",
|
7663
|
+
"to_h",
|
7621
7664
|
"to_hash",
|
7622
7665
|
"to_json",
|
7623
7666
|
"to_s",
|
@@ -7863,6 +7906,7 @@
|
|
7863
7906
|
"timeout",
|
7864
7907
|
"timeout=",
|
7865
7908
|
"to_enum",
|
7909
|
+
"to_h",
|
7866
7910
|
"to_hash",
|
7867
7911
|
"to_json",
|
7868
7912
|
"to_s",
|
@@ -8108,6 +8152,7 @@
|
|
8108
8152
|
"tainted?",
|
8109
8153
|
"tap",
|
8110
8154
|
"to_enum",
|
8155
|
+
"to_h",
|
8111
8156
|
"to_hash",
|
8112
8157
|
"to_json",
|
8113
8158
|
"to_s",
|
@@ -8343,6 +8388,7 @@
|
|
8343
8388
|
"timeout",
|
8344
8389
|
"timeout=",
|
8345
8390
|
"to_enum",
|
8391
|
+
"to_h",
|
8346
8392
|
"to_hash",
|
8347
8393
|
"to_json",
|
8348
8394
|
"to_s",
|
@@ -8581,6 +8627,7 @@
|
|
8581
8627
|
"timeout",
|
8582
8628
|
"timeout=",
|
8583
8629
|
"to_enum",
|
8630
|
+
"to_h",
|
8584
8631
|
"to_hash",
|
8585
8632
|
"to_json",
|
8586
8633
|
"to_s",
|
@@ -8831,6 +8878,7 @@
|
|
8831
8878
|
"timeout",
|
8832
8879
|
"timeout=",
|
8833
8880
|
"to_enum",
|
8881
|
+
"to_h",
|
8834
8882
|
"to_hash",
|
8835
8883
|
"to_json",
|
8836
8884
|
"to_s",
|
@@ -9065,6 +9113,7 @@
|
|
9065
9113
|
"tainted?",
|
9066
9114
|
"tap",
|
9067
9115
|
"to_enum",
|
9116
|
+
"to_h",
|
9068
9117
|
"to_hash",
|
9069
9118
|
"to_json",
|
9070
9119
|
"to_s",
|
@@ -9296,6 +9345,7 @@
|
|
9296
9345
|
"tainted?",
|
9297
9346
|
"tap",
|
9298
9347
|
"to_enum",
|
9348
|
+
"to_h",
|
9299
9349
|
"to_hash",
|
9300
9350
|
"to_json",
|
9301
9351
|
"to_s",
|
@@ -9528,6 +9578,7 @@
|
|
9528
9578
|
"timeout",
|
9529
9579
|
"timeout=",
|
9530
9580
|
"to_enum",
|
9581
|
+
"to_h",
|
9531
9582
|
"to_hash",
|
9532
9583
|
"to_json",
|
9533
9584
|
"to_s",
|
@@ -9759,6 +9810,7 @@
|
|
9759
9810
|
"tap_name=",
|
9760
9811
|
"tapped?",
|
9761
9812
|
"to_enum",
|
9813
|
+
"to_h",
|
9762
9814
|
"to_hash",
|
9763
9815
|
"to_json",
|
9764
9816
|
"to_s",
|
@@ -9987,6 +10039,7 @@
|
|
9987
10039
|
"tainted?",
|
9988
10040
|
"tap",
|
9989
10041
|
"to_enum",
|
10042
|
+
"to_h",
|
9990
10043
|
"to_hash",
|
9991
10044
|
"to_json",
|
9992
10045
|
"to_s",
|
@@ -10210,6 +10263,7 @@
|
|
10210
10263
|
"tainted?",
|
10211
10264
|
"tap",
|
10212
10265
|
"to_enum",
|
10266
|
+
"to_h",
|
10213
10267
|
"to_hash",
|
10214
10268
|
"to_json",
|
10215
10269
|
"to_s",
|
@@ -10466,6 +10520,7 @@
|
|
10466
10520
|
"target",
|
10467
10521
|
"target=",
|
10468
10522
|
"to_enum",
|
10523
|
+
"to_h",
|
10469
10524
|
"to_hash",
|
10470
10525
|
"to_json",
|
10471
10526
|
"to_s",
|
@@ -10700,6 +10755,7 @@
|
|
10700
10755
|
"timeout",
|
10701
10756
|
"timeout=",
|
10702
10757
|
"to_enum",
|
10758
|
+
"to_h",
|
10703
10759
|
"to_hash",
|
10704
10760
|
"to_json",
|
10705
10761
|
"to_s",
|
@@ -10924,6 +10980,7 @@
|
|
10924
10980
|
"tainted?",
|
10925
10981
|
"tap",
|
10926
10982
|
"to_enum",
|
10983
|
+
"to_h",
|
10927
10984
|
"to_hash",
|
10928
10985
|
"to_json",
|
10929
10986
|
"to_s",
|
@@ -11178,6 +11235,7 @@
|
|
11178
11235
|
"timeout",
|
11179
11236
|
"timeout=",
|
11180
11237
|
"to_enum",
|
11238
|
+
"to_h",
|
11181
11239
|
"to_hash",
|
11182
11240
|
"to_json",
|
11183
11241
|
"to_s",
|
@@ -11493,6 +11551,7 @@
|
|
11493
11551
|
"time_out",
|
11494
11552
|
"time_out=",
|
11495
11553
|
"to_enum",
|
11554
|
+
"to_h",
|
11496
11555
|
"to_hash",
|
11497
11556
|
"to_json",
|
11498
11557
|
"to_s",
|
@@ -11735,6 +11794,7 @@
|
|
11735
11794
|
"to",
|
11736
11795
|
"to=",
|
11737
11796
|
"to_enum",
|
11797
|
+
"to_h",
|
11738
11798
|
"to_hash",
|
11739
11799
|
"to_json",
|
11740
11800
|
"to_s",
|
@@ -11958,6 +12018,7 @@
|
|
11958
12018
|
"tainted?",
|
11959
12019
|
"tap",
|
11960
12020
|
"to_enum",
|
12021
|
+
"to_h",
|
11961
12022
|
"to_hash",
|
11962
12023
|
"to_json",
|
11963
12024
|
"to_s",
|
@@ -12180,6 +12241,7 @@
|
|
12180
12241
|
"tainted?",
|
12181
12242
|
"tap",
|
12182
12243
|
"to_enum",
|
12244
|
+
"to_h",
|
12183
12245
|
"to_hash",
|
12184
12246
|
"to_json",
|
12185
12247
|
"to_s",
|
@@ -12410,6 +12472,7 @@
|
|
12410
12472
|
"tainted?",
|
12411
12473
|
"tap",
|
12412
12474
|
"to_enum",
|
12475
|
+
"to_h",
|
12413
12476
|
"to_hash",
|
12414
12477
|
"to_json",
|
12415
12478
|
"to_s",
|
@@ -12657,6 +12720,7 @@
|
|
12657
12720
|
"tap",
|
12658
12721
|
"timeout",
|
12659
12722
|
"to_enum",
|
12723
|
+
"to_h",
|
12660
12724
|
"to_hash",
|
12661
12725
|
"to_json",
|
12662
12726
|
"to_s",
|
@@ -12888,6 +12952,7 @@
|
|
12888
12952
|
"timeout",
|
12889
12953
|
"timeout=",
|
12890
12954
|
"to_enum",
|
12955
|
+
"to_h",
|
12891
12956
|
"to_hash",
|
12892
12957
|
"to_json",
|
12893
12958
|
"to_s",
|
@@ -13124,6 +13189,7 @@
|
|
13124
13189
|
"tainted?",
|
13125
13190
|
"tap",
|
13126
13191
|
"to_enum",
|
13192
|
+
"to_h",
|
13127
13193
|
"to_hash",
|
13128
13194
|
"to_json",
|
13129
13195
|
"to_s",
|
@@ -13368,6 +13434,7 @@
|
|
13368
13434
|
"tainted?",
|
13369
13435
|
"tap",
|
13370
13436
|
"to_enum",
|
13437
|
+
"to_h",
|
13371
13438
|
"to_hash",
|
13372
13439
|
"to_json",
|
13373
13440
|
"to_s",
|
@@ -13603,6 +13670,7 @@
|
|
13603
13670
|
"timeout",
|
13604
13671
|
"timeout=",
|
13605
13672
|
"to_enum",
|
13673
|
+
"to_h",
|
13606
13674
|
"to_hash",
|
13607
13675
|
"to_json",
|
13608
13676
|
"to_s",
|
@@ -13828,6 +13896,7 @@
|
|
13828
13896
|
"tainted?",
|
13829
13897
|
"tap",
|
13830
13898
|
"to_enum",
|
13899
|
+
"to_h",
|
13831
13900
|
"to_hash",
|
13832
13901
|
"to_json",
|
13833
13902
|
"to_s",
|
@@ -14052,6 +14121,7 @@
|
|
14052
14121
|
"tainted?",
|
14053
14122
|
"tap",
|
14054
14123
|
"to_enum",
|
14124
|
+
"to_h",
|
14055
14125
|
"to_hash",
|
14056
14126
|
"to_json",
|
14057
14127
|
"to_s",
|
@@ -14282,6 +14352,7 @@
|
|
14282
14352
|
"timeout",
|
14283
14353
|
"timeout=",
|
14284
14354
|
"to_enum",
|
14355
|
+
"to_h",
|
14285
14356
|
"to_hash",
|
14286
14357
|
"to_json",
|
14287
14358
|
"to_s",
|
@@ -14535,6 +14606,7 @@
|
|
14535
14606
|
"tainted?",
|
14536
14607
|
"tap",
|
14537
14608
|
"to_enum",
|
14609
|
+
"to_h",
|
14538
14610
|
"to_hash",
|
14539
14611
|
"to_json",
|
14540
14612
|
"to_s",
|
@@ -14790,6 +14862,7 @@
|
|
14790
14862
|
"tainted?",
|
14791
14863
|
"tap",
|
14792
14864
|
"to_enum",
|
14865
|
+
"to_h",
|
14793
14866
|
"to_hash",
|
14794
14867
|
"to_json",
|
14795
14868
|
"to_s",
|
@@ -15043,6 +15116,7 @@
|
|
15043
15116
|
"tainted?",
|
15044
15117
|
"tap",
|
15045
15118
|
"to_enum",
|
15119
|
+
"to_h",
|
15046
15120
|
"to_hash",
|
15047
15121
|
"to_json",
|
15048
15122
|
"to_s",
|
@@ -15298,6 +15372,7 @@
|
|
15298
15372
|
"tainted?",
|
15299
15373
|
"tap",
|
15300
15374
|
"to_enum",
|
15375
|
+
"to_h",
|
15301
15376
|
"to_hash",
|
15302
15377
|
"to_json",
|
15303
15378
|
"to_s",
|
@@ -15551,6 +15626,7 @@
|
|
15551
15626
|
"tainted?",
|
15552
15627
|
"tap",
|
15553
15628
|
"to_enum",
|
15629
|
+
"to_h",
|
15554
15630
|
"to_hash",
|
15555
15631
|
"to_json",
|
15556
15632
|
"to_s",
|
@@ -15836,6 +15912,7 @@
|
|
15836
15912
|
"tainted?",
|
15837
15913
|
"tap",
|
15838
15914
|
"to_enum",
|
15915
|
+
"to_h",
|
15839
15916
|
"to_hash",
|
15840
15917
|
"to_json",
|
15841
15918
|
"to_s",
|
@@ -16097,6 +16174,7 @@
|
|
16097
16174
|
"tainted?",
|
16098
16175
|
"tap",
|
16099
16176
|
"to_enum",
|
16177
|
+
"to_h",
|
16100
16178
|
"to_hash",
|
16101
16179
|
"to_json",
|
16102
16180
|
"to_s",
|
@@ -16368,6 +16446,7 @@
|
|
16368
16446
|
"tainted?",
|
16369
16447
|
"tap",
|
16370
16448
|
"to_enum",
|
16449
|
+
"to_h",
|
16371
16450
|
"to_hash",
|
16372
16451
|
"to_json",
|
16373
16452
|
"to_s",
|
@@ -16594,6 +16673,7 @@
|
|
16594
16673
|
"tainted?",
|
16595
16674
|
"tap",
|
16596
16675
|
"to_enum",
|
16676
|
+
"to_h",
|
16597
16677
|
"to_hash",
|
16598
16678
|
"to_json",
|
16599
16679
|
"to_s",
|
@@ -16824,6 +16904,7 @@
|
|
16824
16904
|
"timeout",
|
16825
16905
|
"timeout=",
|
16826
16906
|
"to_enum",
|
16907
|
+
"to_h",
|
16827
16908
|
"to_hash",
|
16828
16909
|
"to_json",
|
16829
16910
|
"to_s",
|
@@ -17056,6 +17137,7 @@
|
|
17056
17137
|
"timeout",
|
17057
17138
|
"timeout=",
|
17058
17139
|
"to_enum",
|
17140
|
+
"to_h",
|
17059
17141
|
"to_hash",
|
17060
17142
|
"to_json",
|
17061
17143
|
"to_s",
|
@@ -17288,6 +17370,7 @@
|
|
17288
17370
|
"timeout",
|
17289
17371
|
"timeout=",
|
17290
17372
|
"to_enum",
|
17373
|
+
"to_h",
|
17291
17374
|
"to_hash",
|
17292
17375
|
"to_json",
|
17293
17376
|
"to_s",
|
@@ -17542,6 +17625,7 @@
|
|
17542
17625
|
"timeout",
|
17543
17626
|
"timeout=",
|
17544
17627
|
"to_enum",
|
17628
|
+
"to_h",
|
17545
17629
|
"to_hash",
|
17546
17630
|
"to_json",
|
17547
17631
|
"to_s",
|
@@ -17777,6 +17861,7 @@
|
|
17777
17861
|
"timeout",
|
17778
17862
|
"timeout=",
|
17779
17863
|
"to_enum",
|
17864
|
+
"to_h",
|
17780
17865
|
"to_hash",
|
17781
17866
|
"to_json",
|
17782
17867
|
"to_s",
|
@@ -18012,6 +18097,7 @@
|
|
18012
18097
|
"timeout",
|
18013
18098
|
"timeout=",
|
18014
18099
|
"to_enum",
|
18100
|
+
"to_h",
|
18015
18101
|
"to_hash",
|
18016
18102
|
"to_json",
|
18017
18103
|
"to_s",
|
@@ -18244,6 +18330,7 @@
|
|
18244
18330
|
"tainted?",
|
18245
18331
|
"tap",
|
18246
18332
|
"to_enum",
|
18333
|
+
"to_h",
|
18247
18334
|
"to_hash",
|
18248
18335
|
"to_json",
|
18249
18336
|
"to_s",
|
@@ -18502,6 +18589,7 @@
|
|
18502
18589
|
"timeout",
|
18503
18590
|
"timeout=",
|
18504
18591
|
"to_enum",
|
18592
|
+
"to_h",
|
18505
18593
|
"to_hash",
|
18506
18594
|
"to_json",
|
18507
18595
|
"to_s",
|
@@ -18759,6 +18847,7 @@
|
|
18759
18847
|
"timeout",
|
18760
18848
|
"timeout=",
|
18761
18849
|
"to_enum",
|
18850
|
+
"to_h",
|
18762
18851
|
"to_hash",
|
18763
18852
|
"to_json",
|
18764
18853
|
"to_s",
|
@@ -18986,6 +19075,7 @@
|
|
18986
19075
|
"tainted?",
|
18987
19076
|
"tap",
|
18988
19077
|
"to_enum",
|
19078
|
+
"to_h",
|
18989
19079
|
"to_hash",
|
18990
19080
|
"to_json",
|
18991
19081
|
"to_s",
|
@@ -19210,6 +19300,7 @@
|
|
19210
19300
|
"tainted?",
|
19211
19301
|
"tap",
|
19212
19302
|
"to_enum",
|
19303
|
+
"to_h",
|
19213
19304
|
"to_hash",
|
19214
19305
|
"to_json",
|
19215
19306
|
"to_s",
|
@@ -19451,6 +19542,7 @@
|
|
19451
19542
|
"tainted?",
|
19452
19543
|
"tap",
|
19453
19544
|
"to_enum",
|
19545
|
+
"to_h",
|
19454
19546
|
"to_hash",
|
19455
19547
|
"to_json",
|
19456
19548
|
"to_s",
|
@@ -19710,6 +19802,7 @@
|
|
19710
19802
|
"tainted?",
|
19711
19803
|
"tap",
|
19712
19804
|
"to_enum",
|
19805
|
+
"to_h",
|
19713
19806
|
"to_hash",
|
19714
19807
|
"to_json",
|
19715
19808
|
"to_s",
|
@@ -19942,6 +20035,7 @@
|
|
19942
20035
|
"tainted?",
|
19943
20036
|
"tap",
|
19944
20037
|
"to_enum",
|
20038
|
+
"to_h",
|
19945
20039
|
"to_hash",
|
19946
20040
|
"to_json",
|
19947
20041
|
"to_s",
|
@@ -20162,6 +20256,7 @@
|
|
20162
20256
|
"tainted?",
|
20163
20257
|
"tap",
|
20164
20258
|
"to_enum",
|
20259
|
+
"to_h",
|
20165
20260
|
"to_hash",
|
20166
20261
|
"to_json",
|
20167
20262
|
"to_s",
|
@@ -20396,6 +20491,7 @@
|
|
20396
20491
|
"tainted?",
|
20397
20492
|
"tap",
|
20398
20493
|
"to_enum",
|
20494
|
+
"to_h",
|
20399
20495
|
"to_hash",
|
20400
20496
|
"to_json",
|
20401
20497
|
"to_s",
|
@@ -20618,6 +20714,7 @@
|
|
20618
20714
|
"tainted?",
|
20619
20715
|
"tap",
|
20620
20716
|
"to_enum",
|
20717
|
+
"to_h",
|
20621
20718
|
"to_hash",
|
20622
20719
|
"to_json",
|
20623
20720
|
"to_s",
|
@@ -20838,6 +20935,7 @@
|
|
20838
20935
|
"tainted?",
|
20839
20936
|
"tap",
|
20840
20937
|
"to_enum",
|
20938
|
+
"to_h",
|
20841
20939
|
"to_hash",
|
20842
20940
|
"to_json",
|
20843
20941
|
"to_s",
|
@@ -21080,6 +21178,7 @@
|
|
21080
21178
|
"target",
|
21081
21179
|
"target=",
|
21082
21180
|
"to_enum",
|
21181
|
+
"to_h",
|
21083
21182
|
"to_hash",
|
21084
21183
|
"to_json",
|
21085
21184
|
"to_s",
|
@@ -21312,6 +21411,7 @@
|
|
21312
21411
|
"timeout",
|
21313
21412
|
"timeout=",
|
21314
21413
|
"to_enum",
|
21414
|
+
"to_h",
|
21315
21415
|
"to_hash",
|
21316
21416
|
"to_json",
|
21317
21417
|
"to_s",
|
@@ -21566,6 +21666,7 @@
|
|
21566
21666
|
"timeout",
|
21567
21667
|
"timeout=",
|
21568
21668
|
"to_enum",
|
21669
|
+
"to_h",
|
21569
21670
|
"to_hash",
|
21570
21671
|
"to_json",
|
21571
21672
|
"to_s",
|
@@ -21792,6 +21893,7 @@
|
|
21792
21893
|
"tainted?",
|
21793
21894
|
"tap",
|
21794
21895
|
"to_enum",
|
21896
|
+
"to_h",
|
21795
21897
|
"to_hash",
|
21796
21898
|
"to_json",
|
21797
21899
|
"to_s",
|
@@ -22035,6 +22137,7 @@
|
|
22035
22137
|
"timeout",
|
22036
22138
|
"timeout=",
|
22037
22139
|
"to_enum",
|
22140
|
+
"to_h",
|
22038
22141
|
"to_hash",
|
22039
22142
|
"to_json",
|
22040
22143
|
"to_s",
|
@@ -22289,6 +22392,7 @@
|
|
22289
22392
|
"timeout",
|
22290
22393
|
"timeout=",
|
22291
22394
|
"to_enum",
|
22395
|
+
"to_h",
|
22292
22396
|
"to_hash",
|
22293
22397
|
"to_json",
|
22294
22398
|
"to_s",
|
@@ -22531,6 +22635,7 @@
|
|
22531
22635
|
"tap",
|
22532
22636
|
"timeout",
|
22533
22637
|
"to_enum",
|
22638
|
+
"to_h",
|
22534
22639
|
"to_hash",
|
22535
22640
|
"to_json",
|
22536
22641
|
"to_s",
|
@@ -22762,6 +22867,7 @@
|
|
22762
22867
|
"timeout",
|
22763
22868
|
"timeout=",
|
22764
22869
|
"to_enum",
|
22870
|
+
"to_h",
|
22765
22871
|
"to_hash",
|
22766
22872
|
"to_json",
|
22767
22873
|
"to_s",
|
@@ -22994,6 +23100,7 @@
|
|
22994
23100
|
"timeout",
|
22995
23101
|
"timeout=",
|
22996
23102
|
"to_enum",
|
23103
|
+
"to_h",
|
22997
23104
|
"to_hash",
|
22998
23105
|
"to_json",
|
22999
23106
|
"to_s",
|
@@ -23234,6 +23341,7 @@
|
|
23234
23341
|
"timeout",
|
23235
23342
|
"timeout=",
|
23236
23343
|
"to_enum",
|
23344
|
+
"to_h",
|
23237
23345
|
"to_hash",
|
23238
23346
|
"to_json",
|
23239
23347
|
"to_s",
|
@@ -23487,6 +23595,7 @@
|
|
23487
23595
|
"timeout",
|
23488
23596
|
"timeout=",
|
23489
23597
|
"to_enum",
|
23598
|
+
"to_h",
|
23490
23599
|
"to_hash",
|
23491
23600
|
"to_json",
|
23492
23601
|
"to_s",
|
@@ -23738,6 +23847,7 @@
|
|
23738
23847
|
"template",
|
23739
23848
|
"template=",
|
23740
23849
|
"to_enum",
|
23850
|
+
"to_h",
|
23741
23851
|
"to_hash",
|
23742
23852
|
"to_json",
|
23743
23853
|
"to_s",
|
@@ -23975,6 +24085,7 @@
|
|
23975
24085
|
"timeout",
|
23976
24086
|
"timeout=",
|
23977
24087
|
"to_enum",
|
24088
|
+
"to_h",
|
23978
24089
|
"to_hash",
|
23979
24090
|
"to_json",
|
23980
24091
|
"to_s",
|
@@ -24201,6 +24312,7 @@
|
|
24201
24312
|
"tainted?",
|
24202
24313
|
"tap",
|
24203
24314
|
"to_enum",
|
24315
|
+
"to_h",
|
24204
24316
|
"to_hash",
|
24205
24317
|
"to_json",
|
24206
24318
|
"to_s",
|
@@ -24431,6 +24543,7 @@
|
|
24431
24543
|
"tainted?",
|
24432
24544
|
"tap",
|
24433
24545
|
"to_enum",
|
24546
|
+
"to_h",
|
24434
24547
|
"to_hash",
|
24435
24548
|
"to_ini",
|
24436
24549
|
"to_json",
|
@@ -24690,6 +24803,7 @@
|
|
24690
24803
|
"tainted?",
|
24691
24804
|
"tap",
|
24692
24805
|
"to_enum",
|
24806
|
+
"to_h",
|
24693
24807
|
"to_hash",
|
24694
24808
|
"to_json",
|
24695
24809
|
"to_s",
|
@@ -24722,7 +24836,7 @@
|
|
24722
24836
|
"wow64_directory",
|
24723
24837
|
"yield_self"
|
24724
24838
|
],
|
24725
|
-
"
|
24839
|
+
"timezone": [
|
24726
24840
|
"!",
|
24727
24841
|
"!=",
|
24728
24842
|
"!~",
|
@@ -24745,7 +24859,6 @@
|
|
24745
24859
|
"class",
|
24746
24860
|
"clean_array",
|
24747
24861
|
"clone",
|
24748
|
-
"comment",
|
24749
24862
|
"constantize",
|
24750
24863
|
"convert_to_class_name",
|
24751
24864
|
"convert_to_snake_case",
|
@@ -24794,16 +24907,12 @@
|
|
24794
24907
|
"filename_to_qualified_string",
|
24795
24908
|
"find_resource",
|
24796
24909
|
"find_resource!",
|
24797
|
-
"force",
|
24798
24910
|
"forced_32bit_override_required?",
|
24799
24911
|
"freeze",
|
24800
24912
|
"frozen?",
|
24801
24913
|
"gem",
|
24802
|
-
"gid",
|
24803
|
-
"group",
|
24804
24914
|
"guard_interpreter",
|
24805
24915
|
"hash",
|
24806
|
-
"home",
|
24807
24916
|
"identity",
|
24808
24917
|
"ignore_failure",
|
24809
24918
|
"ignore_failure=",
|
@@ -24819,14 +24928,12 @@
|
|
24819
24928
|
"instance_variables",
|
24820
24929
|
"is_a?",
|
24821
24930
|
"is_i386_process_on_x86_64_windows?",
|
24822
|
-
"iterations",
|
24823
24931
|
"itself",
|
24824
24932
|
"kind_of?",
|
24825
24933
|
"lazy",
|
24826
24934
|
"load_from",
|
24827
24935
|
"logger",
|
24828
24936
|
"lookup_provider_constant",
|
24829
|
-
"manage_home",
|
24830
24937
|
"method",
|
24831
24938
|
"method_missing",
|
24832
24939
|
"methods",
|
@@ -24836,7 +24943,6 @@
|
|
24836
24943
|
"node",
|
24837
24944
|
"node_supports_windows_architecture?",
|
24838
24945
|
"node_windows_architecture",
|
24839
|
-
"non_unique",
|
24840
24946
|
"normalize_snake_case_name",
|
24841
24947
|
"not_if",
|
24842
24948
|
"notifies",
|
@@ -24848,7 +24954,6 @@
|
|
24848
24954
|
"only_if",
|
24849
24955
|
"params",
|
24850
24956
|
"params=",
|
24851
|
-
"password",
|
24852
24957
|
"platform?",
|
24853
24958
|
"platform_family?",
|
24854
24959
|
"powershell_exec",
|
@@ -24895,13 +25000,11 @@
|
|
24895
25000
|
"run_action",
|
24896
25001
|
"run_context",
|
24897
25002
|
"run_context=",
|
24898
|
-
"salt",
|
24899
25003
|
"search",
|
24900
25004
|
"send",
|
24901
25005
|
"sensitive",
|
24902
25006
|
"sensitive=",
|
24903
25007
|
"set_or_return",
|
24904
|
-
"shell",
|
24905
25008
|
"shell_out",
|
24906
25009
|
"shell_out!",
|
24907
25010
|
"shell_out_compact",
|
@@ -24921,18 +25024,19 @@
|
|
24921
25024
|
"source_line_number",
|
24922
25025
|
"state_for_resource_reporter",
|
24923
25026
|
"subscribes",
|
24924
|
-
"system",
|
24925
25027
|
"taint",
|
24926
25028
|
"tainted?",
|
24927
25029
|
"tap",
|
25030
|
+
"timezone",
|
25031
|
+
"timezone=",
|
24928
25032
|
"to_enum",
|
25033
|
+
"to_h",
|
24929
25034
|
"to_hash",
|
24930
25035
|
"to_json",
|
24931
25036
|
"to_s",
|
24932
25037
|
"to_text",
|
24933
25038
|
"to_yaml",
|
24934
25039
|
"trust",
|
24935
|
-
"uid",
|
24936
25040
|
"untaint",
|
24937
25041
|
"untrust",
|
24938
25042
|
"untrusted?",
|
@@ -24940,8 +25044,6 @@
|
|
24940
25044
|
"updated?",
|
24941
25045
|
"updated_by_last_action",
|
24942
25046
|
"updated_by_last_action?",
|
24943
|
-
"username",
|
24944
|
-
"username=",
|
24945
25047
|
"valid_windows_architecture?",
|
24946
25048
|
"validate",
|
24947
25049
|
"validate_action",
|
@@ -24955,7 +25057,7 @@
|
|
24955
25057
|
"wow64_directory",
|
24956
25058
|
"yield_self"
|
24957
25059
|
],
|
24958
|
-
"
|
25060
|
+
"user": [
|
24959
25061
|
"!",
|
24960
25062
|
"!=",
|
24961
25063
|
"!~",
|
@@ -24974,13 +25076,11 @@
|
|
24974
25076
|
"as_json",
|
24975
25077
|
"assert_valid_windows_architecture!",
|
24976
25078
|
"before_notifications",
|
24977
|
-
"block",
|
24978
|
-
"block_name",
|
24979
|
-
"block_name=",
|
24980
25079
|
"build_resource",
|
24981
25080
|
"class",
|
24982
25081
|
"clean_array",
|
24983
25082
|
"clone",
|
25083
|
+
"comment",
|
24984
25084
|
"constantize",
|
24985
25085
|
"convert_to_class_name",
|
24986
25086
|
"convert_to_snake_case",
|
@@ -25029,12 +25129,16 @@
|
|
25029
25129
|
"filename_to_qualified_string",
|
25030
25130
|
"find_resource",
|
25031
25131
|
"find_resource!",
|
25132
|
+
"force",
|
25032
25133
|
"forced_32bit_override_required?",
|
25033
25134
|
"freeze",
|
25034
25135
|
"frozen?",
|
25035
25136
|
"gem",
|
25137
|
+
"gid",
|
25138
|
+
"group",
|
25036
25139
|
"guard_interpreter",
|
25037
25140
|
"hash",
|
25141
|
+
"home",
|
25038
25142
|
"identity",
|
25039
25143
|
"ignore_failure",
|
25040
25144
|
"ignore_failure=",
|
@@ -25050,12 +25154,14 @@
|
|
25050
25154
|
"instance_variables",
|
25051
25155
|
"is_a?",
|
25052
25156
|
"is_i386_process_on_x86_64_windows?",
|
25157
|
+
"iterations",
|
25053
25158
|
"itself",
|
25054
25159
|
"kind_of?",
|
25055
25160
|
"lazy",
|
25056
25161
|
"load_from",
|
25057
25162
|
"logger",
|
25058
25163
|
"lookup_provider_constant",
|
25164
|
+
"manage_home",
|
25059
25165
|
"method",
|
25060
25166
|
"method_missing",
|
25061
25167
|
"methods",
|
@@ -25065,6 +25171,7 @@
|
|
25065
25171
|
"node",
|
25066
25172
|
"node_supports_windows_architecture?",
|
25067
25173
|
"node_windows_architecture",
|
25174
|
+
"non_unique",
|
25068
25175
|
"normalize_snake_case_name",
|
25069
25176
|
"not_if",
|
25070
25177
|
"notifies",
|
@@ -25076,6 +25183,7 @@
|
|
25076
25183
|
"only_if",
|
25077
25184
|
"params",
|
25078
25185
|
"params=",
|
25186
|
+
"password",
|
25079
25187
|
"platform?",
|
25080
25188
|
"platform_family?",
|
25081
25189
|
"powershell_exec",
|
@@ -25122,11 +25230,13 @@
|
|
25122
25230
|
"run_action",
|
25123
25231
|
"run_context",
|
25124
25232
|
"run_context=",
|
25233
|
+
"salt",
|
25125
25234
|
"search",
|
25126
25235
|
"send",
|
25127
25236
|
"sensitive",
|
25128
25237
|
"sensitive=",
|
25129
25238
|
"set_or_return",
|
25239
|
+
"shell",
|
25130
25240
|
"shell_out",
|
25131
25241
|
"shell_out!",
|
25132
25242
|
"shell_out_compact",
|
@@ -25146,16 +25256,19 @@
|
|
25146
25256
|
"source_line_number",
|
25147
25257
|
"state_for_resource_reporter",
|
25148
25258
|
"subscribes",
|
25259
|
+
"system",
|
25149
25260
|
"taint",
|
25150
25261
|
"tainted?",
|
25151
25262
|
"tap",
|
25152
25263
|
"to_enum",
|
25264
|
+
"to_h",
|
25153
25265
|
"to_hash",
|
25154
25266
|
"to_json",
|
25155
25267
|
"to_s",
|
25156
25268
|
"to_text",
|
25157
25269
|
"to_yaml",
|
25158
25270
|
"trust",
|
25271
|
+
"uid",
|
25159
25272
|
"untaint",
|
25160
25273
|
"untrust",
|
25161
25274
|
"untrusted?",
|
@@ -25163,6 +25276,8 @@
|
|
25163
25276
|
"updated?",
|
25164
25277
|
"updated_by_last_action",
|
25165
25278
|
"updated_by_last_action?",
|
25279
|
+
"username",
|
25280
|
+
"username=",
|
25166
25281
|
"valid_windows_architecture?",
|
25167
25282
|
"validate",
|
25168
25283
|
"validate_action",
|
@@ -25176,7 +25291,7 @@
|
|
25176
25291
|
"wow64_directory",
|
25177
25292
|
"yield_self"
|
25178
25293
|
],
|
25179
|
-
"
|
25294
|
+
"whyrun_safe_ruby_block": [
|
25180
25295
|
"!",
|
25181
25296
|
"!=",
|
25182
25297
|
"!~",
|
@@ -25195,6 +25310,9 @@
|
|
25195
25310
|
"as_json",
|
25196
25311
|
"assert_valid_windows_architecture!",
|
25197
25312
|
"before_notifications",
|
25313
|
+
"block",
|
25314
|
+
"block_name",
|
25315
|
+
"block_name=",
|
25198
25316
|
"build_resource",
|
25199
25317
|
"class",
|
25200
25318
|
"clean_array",
|
@@ -25231,12 +25349,6 @@
|
|
25231
25349
|
"disable_wow64_file_redirection",
|
25232
25350
|
"display",
|
25233
25351
|
"docker?",
|
25234
|
-
"domain_name",
|
25235
|
-
"domain_name=",
|
25236
|
-
"domain_password",
|
25237
|
-
"domain_password=",
|
25238
|
-
"domain_user",
|
25239
|
-
"domain_user=",
|
25240
25352
|
"dup",
|
25241
25353
|
"edit_resource",
|
25242
25354
|
"edit_resource!",
|
@@ -25285,8 +25397,6 @@
|
|
25285
25397
|
"methods",
|
25286
25398
|
"name",
|
25287
25399
|
"name=",
|
25288
|
-
"new_hostname",
|
25289
|
-
"new_hostname=",
|
25290
25400
|
"nil?",
|
25291
25401
|
"node",
|
25292
25402
|
"node_supports_windows_architecture?",
|
@@ -25300,8 +25410,6 @@
|
|
25300
25410
|
"object_id",
|
25301
25411
|
"older_than_win_2012_or_8?",
|
25302
25412
|
"only_if",
|
25303
|
-
"ou_path",
|
25304
|
-
"ou_path=",
|
25305
25413
|
"params",
|
25306
25414
|
"params=",
|
25307
25415
|
"platform?",
|
@@ -25324,8 +25432,6 @@
|
|
25324
25432
|
"public_method",
|
25325
25433
|
"public_methods",
|
25326
25434
|
"public_send",
|
25327
|
-
"reboot",
|
25328
|
-
"reboot=",
|
25329
25435
|
"reboot_pending?",
|
25330
25436
|
"recipe_name",
|
25331
25437
|
"recipe_name=",
|
@@ -25380,6 +25486,7 @@
|
|
25380
25486
|
"tainted?",
|
25381
25487
|
"tap",
|
25382
25488
|
"to_enum",
|
25489
|
+
"to_h",
|
25383
25490
|
"to_hash",
|
25384
25491
|
"to_json",
|
25385
25492
|
"to_s",
|
@@ -25406,7 +25513,7 @@
|
|
25406
25513
|
"wow64_directory",
|
25407
25514
|
"yield_self"
|
25408
25515
|
],
|
25409
|
-
"
|
25516
|
+
"windows_ad_join": [
|
25410
25517
|
"!",
|
25411
25518
|
"!=",
|
25412
25519
|
"!~",
|
@@ -25422,8 +25529,6 @@
|
|
25422
25529
|
"after_created",
|
25423
25530
|
"allowed_actions",
|
25424
25531
|
"allowed_actions=",
|
25425
|
-
"args",
|
25426
|
-
"args=",
|
25427
25532
|
"as_json",
|
25428
25533
|
"assert_valid_windows_architecture!",
|
25429
25534
|
"before_notifications",
|
@@ -25463,6 +25568,12 @@
|
|
25463
25568
|
"disable_wow64_file_redirection",
|
25464
25569
|
"display",
|
25465
25570
|
"docker?",
|
25571
|
+
"domain_name",
|
25572
|
+
"domain_name=",
|
25573
|
+
"domain_password",
|
25574
|
+
"domain_password=",
|
25575
|
+
"domain_user",
|
25576
|
+
"domain_user=",
|
25466
25577
|
"dup",
|
25467
25578
|
"edit_resource",
|
25468
25579
|
"edit_resource!",
|
@@ -25511,6 +25622,8 @@
|
|
25511
25622
|
"methods",
|
25512
25623
|
"name",
|
25513
25624
|
"name=",
|
25625
|
+
"new_hostname",
|
25626
|
+
"new_hostname=",
|
25514
25627
|
"nil?",
|
25515
25628
|
"node",
|
25516
25629
|
"node_supports_windows_architecture?",
|
@@ -25524,10 +25637,10 @@
|
|
25524
25637
|
"object_id",
|
25525
25638
|
"older_than_win_2012_or_8?",
|
25526
25639
|
"only_if",
|
25640
|
+
"ou_path",
|
25641
|
+
"ou_path=",
|
25527
25642
|
"params",
|
25528
25643
|
"params=",
|
25529
|
-
"path",
|
25530
|
-
"path=",
|
25531
25644
|
"platform?",
|
25532
25645
|
"platform_family?",
|
25533
25646
|
"powershell_exec",
|
@@ -25539,9 +25652,6 @@
|
|
25539
25652
|
"pretty_print_inspect",
|
25540
25653
|
"pretty_print_instance_variables",
|
25541
25654
|
"private_methods",
|
25542
|
-
"program",
|
25543
|
-
"program_name",
|
25544
|
-
"program_name=",
|
25545
25655
|
"property_description",
|
25546
25656
|
"property_is_set?",
|
25547
25657
|
"protected_methods",
|
@@ -25551,6 +25661,8 @@
|
|
25551
25661
|
"public_method",
|
25552
25662
|
"public_methods",
|
25553
25663
|
"public_send",
|
25664
|
+
"reboot",
|
25665
|
+
"reboot=",
|
25554
25666
|
"reboot_pending?",
|
25555
25667
|
"recipe_name",
|
25556
25668
|
"recipe_name=",
|
@@ -25574,8 +25686,6 @@
|
|
25574
25686
|
"retry_delay",
|
25575
25687
|
"retry_delay=",
|
25576
25688
|
"rights",
|
25577
|
-
"root",
|
25578
|
-
"root=",
|
25579
25689
|
"run_action",
|
25580
25690
|
"run_context",
|
25581
25691
|
"run_context=",
|
@@ -25607,6 +25717,7 @@
|
|
25607
25717
|
"tainted?",
|
25608
25718
|
"tap",
|
25609
25719
|
"to_enum",
|
25720
|
+
"to_h",
|
25610
25721
|
"to_hash",
|
25611
25722
|
"to_json",
|
25612
25723
|
"to_s",
|
@@ -25633,7 +25744,7 @@
|
|
25633
25744
|
"wow64_directory",
|
25634
25745
|
"yield_self"
|
25635
25746
|
],
|
25636
|
-
"
|
25747
|
+
"windows_autorun": [
|
25637
25748
|
"!",
|
25638
25749
|
"!=",
|
25639
25750
|
"!~",
|
@@ -25649,6 +25760,8 @@
|
|
25649
25760
|
"after_created",
|
25650
25761
|
"allowed_actions",
|
25651
25762
|
"allowed_actions=",
|
25763
|
+
"args",
|
25764
|
+
"args=",
|
25652
25765
|
"as_json",
|
25653
25766
|
"assert_valid_windows_architecture!",
|
25654
25767
|
"before_notifications",
|
@@ -25680,8 +25793,6 @@
|
|
25680
25793
|
"delayed_notifications",
|
25681
25794
|
"delete_resource",
|
25682
25795
|
"delete_resource!",
|
25683
|
-
"delim",
|
25684
|
-
"delim=",
|
25685
25796
|
"deny_rights",
|
25686
25797
|
"deprecated_attr",
|
25687
25798
|
"deprecated_attr_reader",
|
@@ -25728,8 +25839,6 @@
|
|
25728
25839
|
"is_a?",
|
25729
25840
|
"is_i386_process_on_x86_64_windows?",
|
25730
25841
|
"itself",
|
25731
|
-
"key_name",
|
25732
|
-
"key_name=",
|
25733
25842
|
"kind_of?",
|
25734
25843
|
"lazy",
|
25735
25844
|
"load_from",
|
@@ -25755,6 +25864,8 @@
|
|
25755
25864
|
"only_if",
|
25756
25865
|
"params",
|
25757
25866
|
"params=",
|
25867
|
+
"path",
|
25868
|
+
"path=",
|
25758
25869
|
"platform?",
|
25759
25870
|
"platform_family?",
|
25760
25871
|
"powershell_exec",
|
@@ -25766,6 +25877,9 @@
|
|
25766
25877
|
"pretty_print_inspect",
|
25767
25878
|
"pretty_print_instance_variables",
|
25768
25879
|
"private_methods",
|
25880
|
+
"program",
|
25881
|
+
"program_name",
|
25882
|
+
"program_name=",
|
25769
25883
|
"property_description",
|
25770
25884
|
"property_is_set?",
|
25771
25885
|
"protected_methods",
|
@@ -25798,6 +25912,8 @@
|
|
25798
25912
|
"retry_delay",
|
25799
25913
|
"retry_delay=",
|
25800
25914
|
"rights",
|
25915
|
+
"root",
|
25916
|
+
"root=",
|
25801
25917
|
"run_action",
|
25802
25918
|
"run_context",
|
25803
25919
|
"run_context=",
|
@@ -25829,6 +25945,7 @@
|
|
25829
25945
|
"tainted?",
|
25830
25946
|
"tap",
|
25831
25947
|
"to_enum",
|
25948
|
+
"to_h",
|
25832
25949
|
"to_hash",
|
25833
25950
|
"to_json",
|
25834
25951
|
"to_s",
|
@@ -25842,14 +25959,10 @@
|
|
25842
25959
|
"updated?",
|
25843
25960
|
"updated_by_last_action",
|
25844
25961
|
"updated_by_last_action?",
|
25845
|
-
"user",
|
25846
|
-
"user=",
|
25847
25962
|
"valid_windows_architecture?",
|
25848
25963
|
"validate",
|
25849
25964
|
"validate_action",
|
25850
25965
|
"validate_resource_spec!",
|
25851
|
-
"value",
|
25852
|
-
"value=",
|
25853
25966
|
"value_for_platform",
|
25854
25967
|
"value_for_platform_family",
|
25855
25968
|
"value_to_text",
|
@@ -25859,7 +25972,7 @@
|
|
25859
25972
|
"wow64_directory",
|
25860
25973
|
"yield_self"
|
25861
25974
|
],
|
25862
|
-
"
|
25975
|
+
"windows_certificate": [
|
25863
25976
|
"!",
|
25864
25977
|
"!=",
|
25865
25978
|
"!~",
|
@@ -25873,14 +25986,14 @@
|
|
25873
25986
|
"action",
|
25874
25987
|
"action=",
|
25875
25988
|
"after_created",
|
25876
|
-
"all",
|
25877
|
-
"all=",
|
25878
25989
|
"allowed_actions",
|
25879
25990
|
"allowed_actions=",
|
25880
25991
|
"as_json",
|
25881
25992
|
"assert_valid_windows_architecture!",
|
25882
25993
|
"before_notifications",
|
25883
25994
|
"build_resource",
|
25995
|
+
"cert_path",
|
25996
|
+
"cert_path=",
|
25884
25997
|
"class",
|
25885
25998
|
"clean_array",
|
25886
25999
|
"clone",
|
@@ -25928,8 +26041,6 @@
|
|
25928
26041
|
"equal?",
|
25929
26042
|
"events",
|
25930
26043
|
"extend",
|
25931
|
-
"feature_name",
|
25932
|
-
"feature_name=",
|
25933
26044
|
"ffi_yajl",
|
25934
26045
|
"filename_to_qualified_string",
|
25935
26046
|
"find_resource",
|
@@ -25946,8 +26057,6 @@
|
|
25946
26057
|
"immediate_notifications",
|
25947
26058
|
"inherits",
|
25948
26059
|
"inspect",
|
25949
|
-
"install_method",
|
25950
|
-
"install_method=",
|
25951
26060
|
"instance_eval",
|
25952
26061
|
"instance_exec",
|
25953
26062
|
"instance_of?",
|
@@ -25963,8 +26072,6 @@
|
|
25963
26072
|
"load_from",
|
25964
26073
|
"logger",
|
25965
26074
|
"lookup_provider_constant",
|
25966
|
-
"management_tools",
|
25967
|
-
"management_tools=",
|
25968
26075
|
"method",
|
25969
26076
|
"method_missing",
|
25970
26077
|
"methods",
|
@@ -25985,6 +26092,8 @@
|
|
25985
26092
|
"only_if",
|
25986
26093
|
"params",
|
25987
26094
|
"params=",
|
26095
|
+
"pfx_password",
|
26096
|
+
"pfx_password=",
|
25988
26097
|
"platform?",
|
25989
26098
|
"platform_family?",
|
25990
26099
|
"powershell_exec",
|
@@ -25995,6 +26104,8 @@
|
|
25995
26104
|
"pretty_print_cycle",
|
25996
26105
|
"pretty_print_inspect",
|
25997
26106
|
"pretty_print_instance_variables",
|
26107
|
+
"private_key_acl",
|
26108
|
+
"private_key_acl=",
|
25998
26109
|
"private_methods",
|
25999
26110
|
"property_description",
|
26000
26111
|
"property_is_set?",
|
@@ -26056,13 +26167,14 @@
|
|
26056
26167
|
"source_line_file",
|
26057
26168
|
"source_line_number",
|
26058
26169
|
"state_for_resource_reporter",
|
26170
|
+
"store_name",
|
26171
|
+
"store_name=",
|
26059
26172
|
"subscribes",
|
26060
26173
|
"taint",
|
26061
26174
|
"tainted?",
|
26062
26175
|
"tap",
|
26063
|
-
"timeout",
|
26064
|
-
"timeout=",
|
26065
26176
|
"to_enum",
|
26177
|
+
"to_h",
|
26066
26178
|
"to_hash",
|
26067
26179
|
"to_json",
|
26068
26180
|
"to_s",
|
@@ -26076,6 +26188,8 @@
|
|
26076
26188
|
"updated?",
|
26077
26189
|
"updated_by_last_action",
|
26078
26190
|
"updated_by_last_action?",
|
26191
|
+
"user_store",
|
26192
|
+
"user_store=",
|
26079
26193
|
"valid_windows_architecture?",
|
26080
26194
|
"validate",
|
26081
26195
|
"validate_action",
|
@@ -26089,7 +26203,7 @@
|
|
26089
26203
|
"wow64_directory",
|
26090
26204
|
"yield_self"
|
26091
26205
|
],
|
26092
|
-
"
|
26206
|
+
"windows_env": [
|
26093
26207
|
"!",
|
26094
26208
|
"!=",
|
26095
26209
|
"!~",
|
@@ -26103,8 +26217,6 @@
|
|
26103
26217
|
"action",
|
26104
26218
|
"action=",
|
26105
26219
|
"after_created",
|
26106
|
-
"all",
|
26107
|
-
"all=",
|
26108
26220
|
"allowed_actions",
|
26109
26221
|
"allowed_actions=",
|
26110
26222
|
"as_json",
|
@@ -26138,6 +26250,8 @@
|
|
26138
26250
|
"delayed_notifications",
|
26139
26251
|
"delete_resource",
|
26140
26252
|
"delete_resource!",
|
26253
|
+
"delim",
|
26254
|
+
"delim=",
|
26141
26255
|
"deny_rights",
|
26142
26256
|
"deprecated_attr",
|
26143
26257
|
"deprecated_attr_reader",
|
@@ -26158,8 +26272,6 @@
|
|
26158
26272
|
"equal?",
|
26159
26273
|
"events",
|
26160
26274
|
"extend",
|
26161
|
-
"feature_name",
|
26162
|
-
"feature_name=",
|
26163
26275
|
"ffi_yajl",
|
26164
26276
|
"filename_to_qualified_string",
|
26165
26277
|
"find_resource",
|
@@ -26186,6 +26298,8 @@
|
|
26186
26298
|
"is_a?",
|
26187
26299
|
"is_i386_process_on_x86_64_windows?",
|
26188
26300
|
"itself",
|
26301
|
+
"key_name",
|
26302
|
+
"key_name=",
|
26189
26303
|
"kind_of?",
|
26190
26304
|
"lazy",
|
26191
26305
|
"load_from",
|
@@ -26275,8 +26389,6 @@
|
|
26275
26389
|
"singleton_method",
|
26276
26390
|
"singleton_methods",
|
26277
26391
|
"snake_case_basename",
|
26278
|
-
"source",
|
26279
|
-
"source=",
|
26280
26392
|
"source_line",
|
26281
26393
|
"source_line=",
|
26282
26394
|
"source_line_file",
|
@@ -26286,10 +26398,8 @@
|
|
26286
26398
|
"taint",
|
26287
26399
|
"tainted?",
|
26288
26400
|
"tap",
|
26289
|
-
"timeout",
|
26290
|
-
"timeout=",
|
26291
26401
|
"to_enum",
|
26292
|
-
"
|
26402
|
+
"to_h",
|
26293
26403
|
"to_hash",
|
26294
26404
|
"to_json",
|
26295
26405
|
"to_s",
|
@@ -26303,10 +26413,14 @@
|
|
26303
26413
|
"updated?",
|
26304
26414
|
"updated_by_last_action",
|
26305
26415
|
"updated_by_last_action?",
|
26416
|
+
"user",
|
26417
|
+
"user=",
|
26306
26418
|
"valid_windows_architecture?",
|
26307
26419
|
"validate",
|
26308
26420
|
"validate_action",
|
26309
26421
|
"validate_resource_spec!",
|
26422
|
+
"value",
|
26423
|
+
"value=",
|
26310
26424
|
"value_for_platform",
|
26311
26425
|
"value_for_platform_family",
|
26312
26426
|
"value_to_text",
|
@@ -26316,7 +26430,7 @@
|
|
26316
26430
|
"wow64_directory",
|
26317
26431
|
"yield_self"
|
26318
26432
|
],
|
26319
|
-
"
|
26433
|
+
"windows_feature": [
|
26320
26434
|
"!",
|
26321
26435
|
"!=",
|
26322
26436
|
"!~",
|
@@ -26403,6 +26517,8 @@
|
|
26403
26517
|
"immediate_notifications",
|
26404
26518
|
"inherits",
|
26405
26519
|
"inspect",
|
26520
|
+
"install_method",
|
26521
|
+
"install_method=",
|
26406
26522
|
"instance_eval",
|
26407
26523
|
"instance_exec",
|
26408
26524
|
"instance_of?",
|
@@ -26518,7 +26634,7 @@
|
|
26518
26634
|
"timeout",
|
26519
26635
|
"timeout=",
|
26520
26636
|
"to_enum",
|
26521
|
-
"
|
26637
|
+
"to_h",
|
26522
26638
|
"to_hash",
|
26523
26639
|
"to_json",
|
26524
26640
|
"to_s",
|
@@ -26545,7 +26661,7 @@
|
|
26545
26661
|
"wow64_directory",
|
26546
26662
|
"yield_self"
|
26547
26663
|
],
|
26548
|
-
"
|
26664
|
+
"windows_feature_dism": [
|
26549
26665
|
"!",
|
26550
26666
|
"!=",
|
26551
26667
|
"!~",
|
@@ -26559,6 +26675,8 @@
|
|
26559
26675
|
"action",
|
26560
26676
|
"action=",
|
26561
26677
|
"after_created",
|
26678
|
+
"all",
|
26679
|
+
"all=",
|
26562
26680
|
"allowed_actions",
|
26563
26681
|
"allowed_actions=",
|
26564
26682
|
"as_json",
|
@@ -26612,12 +26730,12 @@
|
|
26612
26730
|
"equal?",
|
26613
26731
|
"events",
|
26614
26732
|
"extend",
|
26733
|
+
"feature_name",
|
26734
|
+
"feature_name=",
|
26615
26735
|
"ffi_yajl",
|
26616
26736
|
"filename_to_qualified_string",
|
26617
26737
|
"find_resource",
|
26618
26738
|
"find_resource!",
|
26619
|
-
"font_name",
|
26620
|
-
"font_name=",
|
26621
26739
|
"forced_32bit_override_required?",
|
26622
26740
|
"freeze",
|
26623
26741
|
"frozen?",
|
@@ -26740,7 +26858,11 @@
|
|
26740
26858
|
"taint",
|
26741
26859
|
"tainted?",
|
26742
26860
|
"tap",
|
26861
|
+
"timeout",
|
26862
|
+
"timeout=",
|
26743
26863
|
"to_enum",
|
26864
|
+
"to_formatted_array",
|
26865
|
+
"to_h",
|
26744
26866
|
"to_hash",
|
26745
26867
|
"to_json",
|
26746
26868
|
"to_s",
|
@@ -26767,7 +26889,7 @@
|
|
26767
26889
|
"wow64_directory",
|
26768
26890
|
"yield_self"
|
26769
26891
|
],
|
26770
|
-
"
|
26892
|
+
"windows_feature_powershell": [
|
26771
26893
|
"!",
|
26772
26894
|
"!=",
|
26773
26895
|
"!~",
|
@@ -26781,15 +26903,14 @@
|
|
26781
26903
|
"action",
|
26782
26904
|
"action=",
|
26783
26905
|
"after_created",
|
26906
|
+
"all",
|
26907
|
+
"all=",
|
26784
26908
|
"allowed_actions",
|
26785
26909
|
"allowed_actions=",
|
26786
26910
|
"as_json",
|
26787
|
-
"as_uri",
|
26788
26911
|
"assert_valid_windows_architecture!",
|
26789
26912
|
"before_notifications",
|
26790
26913
|
"build_resource",
|
26791
|
-
"checksum",
|
26792
|
-
"checksum=",
|
26793
26914
|
"class",
|
26794
26915
|
"clean_array",
|
26795
26916
|
"clone",
|
@@ -26837,6 +26958,8 @@
|
|
26837
26958
|
"equal?",
|
26838
26959
|
"events",
|
26839
26960
|
"extend",
|
26961
|
+
"feature_name",
|
26962
|
+
"feature_name=",
|
26840
26963
|
"ffi_yajl",
|
26841
26964
|
"filename_to_qualified_string",
|
26842
26965
|
"find_resource",
|
@@ -26853,8 +26976,6 @@
|
|
26853
26976
|
"immediate_notifications",
|
26854
26977
|
"inherits",
|
26855
26978
|
"inspect",
|
26856
|
-
"installer_type",
|
26857
|
-
"installer_type=",
|
26858
26979
|
"instance_eval",
|
26859
26980
|
"instance_exec",
|
26860
26981
|
"instance_of?",
|
@@ -26870,6 +26991,8 @@
|
|
26870
26991
|
"load_from",
|
26871
26992
|
"logger",
|
26872
26993
|
"lookup_provider_constant",
|
26994
|
+
"management_tools",
|
26995
|
+
"management_tools=",
|
26873
26996
|
"method",
|
26874
26997
|
"method_missing",
|
26875
26998
|
"methods",
|
@@ -26888,10 +27011,6 @@
|
|
26888
27011
|
"object_id",
|
26889
27012
|
"older_than_win_2012_or_8?",
|
26890
27013
|
"only_if",
|
26891
|
-
"options",
|
26892
|
-
"options=",
|
26893
|
-
"package_name",
|
26894
|
-
"package_name=",
|
26895
27014
|
"params",
|
26896
27015
|
"params=",
|
26897
27016
|
"platform?",
|
@@ -26923,8 +27042,6 @@
|
|
26923
27042
|
"registry_has_subkeys?",
|
26924
27043
|
"registry_key_exists?",
|
26925
27044
|
"registry_value_exists?",
|
26926
|
-
"remote_file_attributes",
|
26927
|
-
"remote_file_attributes=",
|
26928
27045
|
"remove_instance_variable",
|
26929
27046
|
"reset_property",
|
26930
27047
|
"resolve_notification_references",
|
@@ -26933,17 +27050,11 @@
|
|
26933
27050
|
"resource_name",
|
26934
27051
|
"resources",
|
26935
27052
|
"respond_to?",
|
26936
|
-
"response_file",
|
26937
|
-
"response_file=",
|
26938
|
-
"response_file_variables",
|
26939
|
-
"response_file_variables=",
|
26940
27053
|
"restore_wow64_file_redirection",
|
26941
27054
|
"retries",
|
26942
27055
|
"retries=",
|
26943
27056
|
"retry_delay",
|
26944
27057
|
"retry_delay=",
|
26945
|
-
"returns",
|
26946
|
-
"returns=",
|
26947
27058
|
"rights",
|
26948
27059
|
"run_action",
|
26949
27060
|
"run_context",
|
@@ -26980,6 +27091,8 @@
|
|
26980
27091
|
"timeout",
|
26981
27092
|
"timeout=",
|
26982
27093
|
"to_enum",
|
27094
|
+
"to_formatted_array",
|
27095
|
+
"to_h",
|
26983
27096
|
"to_hash",
|
26984
27097
|
"to_json",
|
26985
27098
|
"to_s",
|
@@ -26993,7 +27106,6 @@
|
|
26993
27106
|
"updated?",
|
26994
27107
|
"updated_by_last_action",
|
26995
27108
|
"updated_by_last_action?",
|
26996
|
-
"uri_scheme?",
|
26997
27109
|
"valid_windows_architecture?",
|
26998
27110
|
"validate",
|
26999
27111
|
"validate_action",
|
@@ -27001,15 +27113,13 @@
|
|
27001
27113
|
"value_for_platform",
|
27002
27114
|
"value_for_platform_family",
|
27003
27115
|
"value_to_text",
|
27004
|
-
"version",
|
27005
|
-
"version=",
|
27006
27116
|
"with_os_architecture",
|
27007
27117
|
"with_run_context",
|
27008
27118
|
"wow64_architecture_override_required?",
|
27009
27119
|
"wow64_directory",
|
27010
27120
|
"yield_self"
|
27011
27121
|
],
|
27012
|
-
"
|
27122
|
+
"windows_firewall_rule": [
|
27013
27123
|
"!",
|
27014
27124
|
"!=",
|
27015
27125
|
"!~",
|
@@ -27027,8 +27137,6 @@
|
|
27027
27137
|
"allowed_actions=",
|
27028
27138
|
"as_json",
|
27029
27139
|
"assert_valid_windows_architecture!",
|
27030
|
-
"automatic_managed",
|
27031
|
-
"automatic_managed=",
|
27032
27140
|
"before_notifications",
|
27033
27141
|
"build_resource",
|
27034
27142
|
"class",
|
@@ -27063,6 +27171,10 @@
|
|
27063
27171
|
"deprecated_attr_reader",
|
27064
27172
|
"deprecated_attr_writer",
|
27065
27173
|
"deprecated_ivar",
|
27174
|
+
"description",
|
27175
|
+
"description=",
|
27176
|
+
"direction",
|
27177
|
+
"direction=",
|
27066
27178
|
"disable_wow64_file_redirection",
|
27067
27179
|
"display",
|
27068
27180
|
"docker?",
|
@@ -27070,6 +27182,8 @@
|
|
27070
27182
|
"edit_resource",
|
27071
27183
|
"edit_resource!",
|
27072
27184
|
"elapsed_time",
|
27185
|
+
"enabled",
|
27186
|
+
"enabled=",
|
27073
27187
|
"enclosing_provider",
|
27074
27188
|
"enclosing_provider=",
|
27075
27189
|
"encrypted?",
|
@@ -27082,6 +27196,8 @@
|
|
27082
27196
|
"filename_to_qualified_string",
|
27083
27197
|
"find_resource",
|
27084
27198
|
"find_resource!",
|
27199
|
+
"firewall_action",
|
27200
|
+
"firewall_action=",
|
27085
27201
|
"forced_32bit_override_required?",
|
27086
27202
|
"freeze",
|
27087
27203
|
"frozen?",
|
@@ -27093,8 +27209,6 @@
|
|
27093
27209
|
"ignore_failure=",
|
27094
27210
|
"immediate_notifications",
|
27095
27211
|
"inherits",
|
27096
|
-
"initial_size",
|
27097
|
-
"initial_size=",
|
27098
27212
|
"inspect",
|
27099
27213
|
"instance_eval",
|
27100
27214
|
"instance_exec",
|
@@ -27103,16 +27217,24 @@
|
|
27103
27217
|
"instance_variable_get",
|
27104
27218
|
"instance_variable_set",
|
27105
27219
|
"instance_variables",
|
27220
|
+
"interface_type",
|
27221
|
+
"interface_type=",
|
27222
|
+
"interfacetype",
|
27106
27223
|
"is_a?",
|
27107
27224
|
"is_i386_process_on_x86_64_windows?",
|
27108
27225
|
"itself",
|
27109
27226
|
"kind_of?",
|
27110
27227
|
"lazy",
|
27228
|
+
"load_current_value!",
|
27111
27229
|
"load_from",
|
27230
|
+
"local_address",
|
27231
|
+
"local_address=",
|
27232
|
+
"local_port",
|
27233
|
+
"local_port=",
|
27234
|
+
"localip",
|
27235
|
+
"localport",
|
27112
27236
|
"logger",
|
27113
27237
|
"lookup_provider_constant",
|
27114
|
-
"maximum_size",
|
27115
|
-
"maximum_size=",
|
27116
27238
|
"method",
|
27117
27239
|
"method_missing",
|
27118
27240
|
"methods",
|
@@ -27133,8 +27255,6 @@
|
|
27133
27255
|
"only_if",
|
27134
27256
|
"params",
|
27135
27257
|
"params=",
|
27136
|
-
"path",
|
27137
|
-
"path=",
|
27138
27258
|
"platform?",
|
27139
27259
|
"platform_family?",
|
27140
27260
|
"powershell_exec",
|
@@ -27146,9 +27266,15 @@
|
|
27146
27266
|
"pretty_print_inspect",
|
27147
27267
|
"pretty_print_instance_variables",
|
27148
27268
|
"private_methods",
|
27269
|
+
"profile",
|
27270
|
+
"profile=",
|
27271
|
+
"program",
|
27272
|
+
"program=",
|
27149
27273
|
"property_description",
|
27150
27274
|
"property_is_set?",
|
27151
27275
|
"protected_methods",
|
27276
|
+
"protocol",
|
27277
|
+
"protocol=",
|
27152
27278
|
"provider",
|
27153
27279
|
"provider=",
|
27154
27280
|
"provider_for_action",
|
@@ -27164,6 +27290,12 @@
|
|
27164
27290
|
"registry_has_subkeys?",
|
27165
27291
|
"registry_key_exists?",
|
27166
27292
|
"registry_value_exists?",
|
27293
|
+
"remote_address",
|
27294
|
+
"remote_address=",
|
27295
|
+
"remote_port",
|
27296
|
+
"remote_port=",
|
27297
|
+
"remoteip",
|
27298
|
+
"remoteport",
|
27167
27299
|
"remove_instance_variable",
|
27168
27300
|
"reset_property",
|
27169
27301
|
"resolve_notification_references",
|
@@ -27178,6 +27310,8 @@
|
|
27178
27310
|
"retry_delay",
|
27179
27311
|
"retry_delay=",
|
27180
27312
|
"rights",
|
27313
|
+
"rule_name",
|
27314
|
+
"rule_name=",
|
27181
27315
|
"run_action",
|
27182
27316
|
"run_context",
|
27183
27317
|
"run_context=",
|
@@ -27185,6 +27319,8 @@
|
|
27185
27319
|
"send",
|
27186
27320
|
"sensitive",
|
27187
27321
|
"sensitive=",
|
27322
|
+
"service",
|
27323
|
+
"service=",
|
27188
27324
|
"set_or_return",
|
27189
27325
|
"shell_out",
|
27190
27326
|
"shell_out!",
|
@@ -27205,12 +27341,11 @@
|
|
27205
27341
|
"source_line_number",
|
27206
27342
|
"state_for_resource_reporter",
|
27207
27343
|
"subscribes",
|
27208
|
-
"system_managed",
|
27209
|
-
"system_managed=",
|
27210
27344
|
"taint",
|
27211
27345
|
"tainted?",
|
27212
27346
|
"tap",
|
27213
27347
|
"to_enum",
|
27348
|
+
"to_h",
|
27214
27349
|
"to_hash",
|
27215
27350
|
"to_json",
|
27216
27351
|
"to_s",
|
@@ -27237,7 +27372,7 @@
|
|
27237
27372
|
"wow64_directory",
|
27238
27373
|
"yield_self"
|
27239
27374
|
],
|
27240
|
-
"
|
27375
|
+
"windows_font": [
|
27241
27376
|
"!",
|
27242
27377
|
"!=",
|
27243
27378
|
"!~",
|
@@ -27308,6 +27443,8 @@
|
|
27308
27443
|
"filename_to_qualified_string",
|
27309
27444
|
"find_resource",
|
27310
27445
|
"find_resource!",
|
27446
|
+
"font_name",
|
27447
|
+
"font_name=",
|
27311
27448
|
"forced_32bit_override_required?",
|
27312
27449
|
"freeze",
|
27313
27450
|
"frozen?",
|
@@ -27355,8 +27492,6 @@
|
|
27355
27492
|
"only_if",
|
27356
27493
|
"params",
|
27357
27494
|
"params=",
|
27358
|
-
"path",
|
27359
|
-
"path=",
|
27360
27495
|
"platform?",
|
27361
27496
|
"platform_family?",
|
27362
27497
|
"powershell_exec",
|
@@ -27421,6 +27556,8 @@
|
|
27421
27556
|
"singleton_method",
|
27422
27557
|
"singleton_methods",
|
27423
27558
|
"snake_case_basename",
|
27559
|
+
"source",
|
27560
|
+
"source=",
|
27424
27561
|
"source_line",
|
27425
27562
|
"source_line=",
|
27426
27563
|
"source_line_file",
|
@@ -27431,6 +27568,7 @@
|
|
27431
27568
|
"tainted?",
|
27432
27569
|
"tap",
|
27433
27570
|
"to_enum",
|
27571
|
+
"to_h",
|
27434
27572
|
"to_hash",
|
27435
27573
|
"to_json",
|
27436
27574
|
"to_s",
|
@@ -27457,7 +27595,7 @@
|
|
27457
27595
|
"wow64_directory",
|
27458
27596
|
"yield_self"
|
27459
27597
|
],
|
27460
|
-
"
|
27598
|
+
"windows_package": [
|
27461
27599
|
"!",
|
27462
27600
|
"!=",
|
27463
27601
|
"!~",
|
@@ -27474,14 +27612,15 @@
|
|
27474
27612
|
"allowed_actions",
|
27475
27613
|
"allowed_actions=",
|
27476
27614
|
"as_json",
|
27615
|
+
"as_uri",
|
27477
27616
|
"assert_valid_windows_architecture!",
|
27478
27617
|
"before_notifications",
|
27479
27618
|
"build_resource",
|
27619
|
+
"checksum",
|
27620
|
+
"checksum=",
|
27480
27621
|
"class",
|
27481
27622
|
"clean_array",
|
27482
27623
|
"clone",
|
27483
|
-
"comment",
|
27484
|
-
"comment=",
|
27485
27624
|
"constantize",
|
27486
27625
|
"convert_to_class_name",
|
27487
27626
|
"convert_to_snake_case",
|
@@ -27499,8 +27638,6 @@
|
|
27499
27638
|
"declared_key",
|
27500
27639
|
"declared_type",
|
27501
27640
|
"declared_type=",
|
27502
|
-
"default",
|
27503
|
-
"default=",
|
27504
27641
|
"default_guard_interpreter",
|
27505
27642
|
"define_singleton_method",
|
27506
27643
|
"defined_at",
|
@@ -27513,13 +27650,9 @@
|
|
27513
27650
|
"deprecated_attr_reader",
|
27514
27651
|
"deprecated_attr_writer",
|
27515
27652
|
"deprecated_ivar",
|
27516
|
-
"device_id",
|
27517
|
-
"device_id=",
|
27518
27653
|
"disable_wow64_file_redirection",
|
27519
27654
|
"display",
|
27520
27655
|
"docker?",
|
27521
|
-
"driver_name",
|
27522
|
-
"driver_name=",
|
27523
27656
|
"dup",
|
27524
27657
|
"edit_resource",
|
27525
27658
|
"edit_resource!",
|
@@ -27531,8 +27664,6 @@
|
|
27531
27664
|
"eql?",
|
27532
27665
|
"equal?",
|
27533
27666
|
"events",
|
27534
|
-
"exists",
|
27535
|
-
"exists=",
|
27536
27667
|
"extend",
|
27537
27668
|
"ffi_yajl",
|
27538
27669
|
"filename_to_qualified_string",
|
@@ -27550,6 +27681,8 @@
|
|
27550
27681
|
"immediate_notifications",
|
27551
27682
|
"inherits",
|
27552
27683
|
"inspect",
|
27684
|
+
"installer_type",
|
27685
|
+
"installer_type=",
|
27553
27686
|
"instance_eval",
|
27554
27687
|
"instance_exec",
|
27555
27688
|
"instance_of?",
|
@@ -27557,17 +27690,12 @@
|
|
27557
27690
|
"instance_variable_get",
|
27558
27691
|
"instance_variable_set",
|
27559
27692
|
"instance_variables",
|
27560
|
-
"ipv4_address",
|
27561
|
-
"ipv4_address=",
|
27562
27693
|
"is_a?",
|
27563
27694
|
"is_i386_process_on_x86_64_windows?",
|
27564
27695
|
"itself",
|
27565
27696
|
"kind_of?",
|
27566
27697
|
"lazy",
|
27567
|
-
"load_current_value!",
|
27568
27698
|
"load_from",
|
27569
|
-
"location",
|
27570
|
-
"location=",
|
27571
27699
|
"logger",
|
27572
27700
|
"lookup_provider_constant",
|
27573
27701
|
"method",
|
@@ -27588,6 +27716,10 @@
|
|
27588
27716
|
"object_id",
|
27589
27717
|
"older_than_win_2012_or_8?",
|
27590
27718
|
"only_if",
|
27719
|
+
"options",
|
27720
|
+
"options=",
|
27721
|
+
"package_name",
|
27722
|
+
"package_name=",
|
27591
27723
|
"params",
|
27592
27724
|
"params=",
|
27593
27725
|
"platform?",
|
@@ -27600,7 +27732,6 @@
|
|
27600
27732
|
"pretty_print_cycle",
|
27601
27733
|
"pretty_print_inspect",
|
27602
27734
|
"pretty_print_instance_variables",
|
27603
|
-
"printer_exists?",
|
27604
27735
|
"private_methods",
|
27605
27736
|
"property_description",
|
27606
27737
|
"property_is_set?",
|
@@ -27620,6 +27751,8 @@
|
|
27620
27751
|
"registry_has_subkeys?",
|
27621
27752
|
"registry_key_exists?",
|
27622
27753
|
"registry_value_exists?",
|
27754
|
+
"remote_file_attributes",
|
27755
|
+
"remote_file_attributes=",
|
27623
27756
|
"remove_instance_variable",
|
27624
27757
|
"reset_property",
|
27625
27758
|
"resolve_notification_references",
|
@@ -27628,11 +27761,17 @@
|
|
27628
27761
|
"resource_name",
|
27629
27762
|
"resources",
|
27630
27763
|
"respond_to?",
|
27764
|
+
"response_file",
|
27765
|
+
"response_file=",
|
27766
|
+
"response_file_variables",
|
27767
|
+
"response_file_variables=",
|
27631
27768
|
"restore_wow64_file_redirection",
|
27632
27769
|
"retries",
|
27633
27770
|
"retries=",
|
27634
27771
|
"retry_delay",
|
27635
27772
|
"retry_delay=",
|
27773
|
+
"returns",
|
27774
|
+
"returns=",
|
27636
27775
|
"rights",
|
27637
27776
|
"run_action",
|
27638
27777
|
"run_context",
|
@@ -27642,7 +27781,699 @@
|
|
27642
27781
|
"sensitive",
|
27643
27782
|
"sensitive=",
|
27644
27783
|
"set_or_return",
|
27645
|
-
"
|
27784
|
+
"shell_out",
|
27785
|
+
"shell_out!",
|
27786
|
+
"shell_out_compact",
|
27787
|
+
"shell_out_compact!",
|
27788
|
+
"shell_out_compact_timeout",
|
27789
|
+
"shell_out_compact_timeout!",
|
27790
|
+
"shell_out_with_systems_locale",
|
27791
|
+
"shell_out_with_systems_locale!",
|
27792
|
+
"should_skip?",
|
27793
|
+
"singleton_class",
|
27794
|
+
"singleton_method",
|
27795
|
+
"singleton_methods",
|
27796
|
+
"snake_case_basename",
|
27797
|
+
"source",
|
27798
|
+
"source=",
|
27799
|
+
"source_line",
|
27800
|
+
"source_line=",
|
27801
|
+
"source_line_file",
|
27802
|
+
"source_line_number",
|
27803
|
+
"state_for_resource_reporter",
|
27804
|
+
"subscribes",
|
27805
|
+
"taint",
|
27806
|
+
"tainted?",
|
27807
|
+
"tap",
|
27808
|
+
"timeout",
|
27809
|
+
"timeout=",
|
27810
|
+
"to_enum",
|
27811
|
+
"to_h",
|
27812
|
+
"to_hash",
|
27813
|
+
"to_json",
|
27814
|
+
"to_s",
|
27815
|
+
"to_text",
|
27816
|
+
"to_yaml",
|
27817
|
+
"trust",
|
27818
|
+
"untaint",
|
27819
|
+
"untrust",
|
27820
|
+
"untrusted?",
|
27821
|
+
"updated",
|
27822
|
+
"updated?",
|
27823
|
+
"updated_by_last_action",
|
27824
|
+
"updated_by_last_action?",
|
27825
|
+
"uri_scheme?",
|
27826
|
+
"valid_windows_architecture?",
|
27827
|
+
"validate",
|
27828
|
+
"validate_action",
|
27829
|
+
"validate_resource_spec!",
|
27830
|
+
"value_for_platform",
|
27831
|
+
"value_for_platform_family",
|
27832
|
+
"value_to_text",
|
27833
|
+
"version",
|
27834
|
+
"version=",
|
27835
|
+
"with_os_architecture",
|
27836
|
+
"with_run_context",
|
27837
|
+
"wow64_architecture_override_required?",
|
27838
|
+
"wow64_directory",
|
27839
|
+
"yield_self"
|
27840
|
+
],
|
27841
|
+
"windows_pagefile": [
|
27842
|
+
"!",
|
27843
|
+
"!=",
|
27844
|
+
"!~",
|
27845
|
+
"<=>",
|
27846
|
+
"==",
|
27847
|
+
"===",
|
27848
|
+
"=~",
|
27849
|
+
"__id__",
|
27850
|
+
"__send__",
|
27851
|
+
"a_to_s",
|
27852
|
+
"action",
|
27853
|
+
"action=",
|
27854
|
+
"after_created",
|
27855
|
+
"allowed_actions",
|
27856
|
+
"allowed_actions=",
|
27857
|
+
"as_json",
|
27858
|
+
"assert_valid_windows_architecture!",
|
27859
|
+
"automatic_managed",
|
27860
|
+
"automatic_managed=",
|
27861
|
+
"before_notifications",
|
27862
|
+
"build_resource",
|
27863
|
+
"class",
|
27864
|
+
"clean_array",
|
27865
|
+
"clone",
|
27866
|
+
"constantize",
|
27867
|
+
"convert_to_class_name",
|
27868
|
+
"convert_to_snake_case",
|
27869
|
+
"cookbook_name",
|
27870
|
+
"cookbook_name=",
|
27871
|
+
"cookbook_version",
|
27872
|
+
"current_value",
|
27873
|
+
"current_value_does_not_exist!",
|
27874
|
+
"custom_exception_message",
|
27875
|
+
"customize_exception",
|
27876
|
+
"data_bag",
|
27877
|
+
"data_bag_item",
|
27878
|
+
"dclone",
|
27879
|
+
"declare_resource",
|
27880
|
+
"declared_key",
|
27881
|
+
"declared_type",
|
27882
|
+
"declared_type=",
|
27883
|
+
"default_guard_interpreter",
|
27884
|
+
"define_singleton_method",
|
27885
|
+
"defined_at",
|
27886
|
+
"delayed_action",
|
27887
|
+
"delayed_notifications",
|
27888
|
+
"delete_resource",
|
27889
|
+
"delete_resource!",
|
27890
|
+
"deny_rights",
|
27891
|
+
"deprecated_attr",
|
27892
|
+
"deprecated_attr_reader",
|
27893
|
+
"deprecated_attr_writer",
|
27894
|
+
"deprecated_ivar",
|
27895
|
+
"disable_wow64_file_redirection",
|
27896
|
+
"display",
|
27897
|
+
"docker?",
|
27898
|
+
"dup",
|
27899
|
+
"edit_resource",
|
27900
|
+
"edit_resource!",
|
27901
|
+
"elapsed_time",
|
27902
|
+
"enclosing_provider",
|
27903
|
+
"enclosing_provider=",
|
27904
|
+
"encrypted?",
|
27905
|
+
"enum_for",
|
27906
|
+
"eql?",
|
27907
|
+
"equal?",
|
27908
|
+
"events",
|
27909
|
+
"extend",
|
27910
|
+
"ffi_yajl",
|
27911
|
+
"filename_to_qualified_string",
|
27912
|
+
"find_resource",
|
27913
|
+
"find_resource!",
|
27914
|
+
"forced_32bit_override_required?",
|
27915
|
+
"freeze",
|
27916
|
+
"frozen?",
|
27917
|
+
"gem",
|
27918
|
+
"guard_interpreter",
|
27919
|
+
"hash",
|
27920
|
+
"identity",
|
27921
|
+
"ignore_failure",
|
27922
|
+
"ignore_failure=",
|
27923
|
+
"immediate_notifications",
|
27924
|
+
"inherits",
|
27925
|
+
"initial_size",
|
27926
|
+
"initial_size=",
|
27927
|
+
"inspect",
|
27928
|
+
"instance_eval",
|
27929
|
+
"instance_exec",
|
27930
|
+
"instance_of?",
|
27931
|
+
"instance_variable_defined?",
|
27932
|
+
"instance_variable_get",
|
27933
|
+
"instance_variable_set",
|
27934
|
+
"instance_variables",
|
27935
|
+
"is_a?",
|
27936
|
+
"is_i386_process_on_x86_64_windows?",
|
27937
|
+
"itself",
|
27938
|
+
"kind_of?",
|
27939
|
+
"lazy",
|
27940
|
+
"load_from",
|
27941
|
+
"logger",
|
27942
|
+
"lookup_provider_constant",
|
27943
|
+
"maximum_size",
|
27944
|
+
"maximum_size=",
|
27945
|
+
"method",
|
27946
|
+
"method_missing",
|
27947
|
+
"methods",
|
27948
|
+
"name",
|
27949
|
+
"name=",
|
27950
|
+
"nil?",
|
27951
|
+
"node",
|
27952
|
+
"node_supports_windows_architecture?",
|
27953
|
+
"node_windows_architecture",
|
27954
|
+
"normalize_snake_case_name",
|
27955
|
+
"not_if",
|
27956
|
+
"notifies",
|
27957
|
+
"notifies_before",
|
27958
|
+
"notifies_delayed",
|
27959
|
+
"notifies_immediately",
|
27960
|
+
"object_id",
|
27961
|
+
"older_than_win_2012_or_8?",
|
27962
|
+
"only_if",
|
27963
|
+
"params",
|
27964
|
+
"params=",
|
27965
|
+
"path",
|
27966
|
+
"path=",
|
27967
|
+
"platform?",
|
27968
|
+
"platform_family?",
|
27969
|
+
"powershell_exec",
|
27970
|
+
"powershell_out",
|
27971
|
+
"powershell_out!",
|
27972
|
+
"pretty_inspect",
|
27973
|
+
"pretty_print",
|
27974
|
+
"pretty_print_cycle",
|
27975
|
+
"pretty_print_inspect",
|
27976
|
+
"pretty_print_instance_variables",
|
27977
|
+
"private_methods",
|
27978
|
+
"property_description",
|
27979
|
+
"property_is_set?",
|
27980
|
+
"protected_methods",
|
27981
|
+
"provider",
|
27982
|
+
"provider=",
|
27983
|
+
"provider_for_action",
|
27984
|
+
"public_method",
|
27985
|
+
"public_methods",
|
27986
|
+
"public_send",
|
27987
|
+
"reboot_pending?",
|
27988
|
+
"recipe_name",
|
27989
|
+
"recipe_name=",
|
27990
|
+
"registry_data_exists?",
|
27991
|
+
"registry_get_subkeys",
|
27992
|
+
"registry_get_values",
|
27993
|
+
"registry_has_subkeys?",
|
27994
|
+
"registry_key_exists?",
|
27995
|
+
"registry_value_exists?",
|
27996
|
+
"remove_instance_variable",
|
27997
|
+
"reset_property",
|
27998
|
+
"resolve_notification_references",
|
27999
|
+
"resource_initializing",
|
28000
|
+
"resource_initializing=",
|
28001
|
+
"resource_name",
|
28002
|
+
"resources",
|
28003
|
+
"respond_to?",
|
28004
|
+
"restore_wow64_file_redirection",
|
28005
|
+
"retries",
|
28006
|
+
"retries=",
|
28007
|
+
"retry_delay",
|
28008
|
+
"retry_delay=",
|
28009
|
+
"rights",
|
28010
|
+
"run_action",
|
28011
|
+
"run_context",
|
28012
|
+
"run_context=",
|
28013
|
+
"search",
|
28014
|
+
"send",
|
28015
|
+
"sensitive",
|
28016
|
+
"sensitive=",
|
28017
|
+
"set_or_return",
|
28018
|
+
"shell_out",
|
28019
|
+
"shell_out!",
|
28020
|
+
"shell_out_compact",
|
28021
|
+
"shell_out_compact!",
|
28022
|
+
"shell_out_compact_timeout",
|
28023
|
+
"shell_out_compact_timeout!",
|
28024
|
+
"shell_out_with_systems_locale",
|
28025
|
+
"shell_out_with_systems_locale!",
|
28026
|
+
"should_skip?",
|
28027
|
+
"singleton_class",
|
28028
|
+
"singleton_method",
|
28029
|
+
"singleton_methods",
|
28030
|
+
"snake_case_basename",
|
28031
|
+
"source_line",
|
28032
|
+
"source_line=",
|
28033
|
+
"source_line_file",
|
28034
|
+
"source_line_number",
|
28035
|
+
"state_for_resource_reporter",
|
28036
|
+
"subscribes",
|
28037
|
+
"system_managed",
|
28038
|
+
"system_managed=",
|
28039
|
+
"taint",
|
28040
|
+
"tainted?",
|
28041
|
+
"tap",
|
28042
|
+
"to_enum",
|
28043
|
+
"to_h",
|
28044
|
+
"to_hash",
|
28045
|
+
"to_json",
|
28046
|
+
"to_s",
|
28047
|
+
"to_text",
|
28048
|
+
"to_yaml",
|
28049
|
+
"trust",
|
28050
|
+
"untaint",
|
28051
|
+
"untrust",
|
28052
|
+
"untrusted?",
|
28053
|
+
"updated",
|
28054
|
+
"updated?",
|
28055
|
+
"updated_by_last_action",
|
28056
|
+
"updated_by_last_action?",
|
28057
|
+
"valid_windows_architecture?",
|
28058
|
+
"validate",
|
28059
|
+
"validate_action",
|
28060
|
+
"validate_resource_spec!",
|
28061
|
+
"value_for_platform",
|
28062
|
+
"value_for_platform_family",
|
28063
|
+
"value_to_text",
|
28064
|
+
"with_os_architecture",
|
28065
|
+
"with_run_context",
|
28066
|
+
"wow64_architecture_override_required?",
|
28067
|
+
"wow64_directory",
|
28068
|
+
"yield_self"
|
28069
|
+
],
|
28070
|
+
"windows_path": [
|
28071
|
+
"!",
|
28072
|
+
"!=",
|
28073
|
+
"!~",
|
28074
|
+
"<=>",
|
28075
|
+
"==",
|
28076
|
+
"===",
|
28077
|
+
"=~",
|
28078
|
+
"__id__",
|
28079
|
+
"__send__",
|
28080
|
+
"a_to_s",
|
28081
|
+
"action",
|
28082
|
+
"action=",
|
28083
|
+
"after_created",
|
28084
|
+
"allowed_actions",
|
28085
|
+
"allowed_actions=",
|
28086
|
+
"as_json",
|
28087
|
+
"assert_valid_windows_architecture!",
|
28088
|
+
"before_notifications",
|
28089
|
+
"build_resource",
|
28090
|
+
"class",
|
28091
|
+
"clean_array",
|
28092
|
+
"clone",
|
28093
|
+
"constantize",
|
28094
|
+
"convert_to_class_name",
|
28095
|
+
"convert_to_snake_case",
|
28096
|
+
"cookbook_name",
|
28097
|
+
"cookbook_name=",
|
28098
|
+
"cookbook_version",
|
28099
|
+
"current_value",
|
28100
|
+
"current_value_does_not_exist!",
|
28101
|
+
"custom_exception_message",
|
28102
|
+
"customize_exception",
|
28103
|
+
"data_bag",
|
28104
|
+
"data_bag_item",
|
28105
|
+
"dclone",
|
28106
|
+
"declare_resource",
|
28107
|
+
"declared_key",
|
28108
|
+
"declared_type",
|
28109
|
+
"declared_type=",
|
28110
|
+
"default_guard_interpreter",
|
28111
|
+
"define_singleton_method",
|
28112
|
+
"defined_at",
|
28113
|
+
"delayed_action",
|
28114
|
+
"delayed_notifications",
|
28115
|
+
"delete_resource",
|
28116
|
+
"delete_resource!",
|
28117
|
+
"deny_rights",
|
28118
|
+
"deprecated_attr",
|
28119
|
+
"deprecated_attr_reader",
|
28120
|
+
"deprecated_attr_writer",
|
28121
|
+
"deprecated_ivar",
|
28122
|
+
"disable_wow64_file_redirection",
|
28123
|
+
"display",
|
28124
|
+
"docker?",
|
28125
|
+
"dup",
|
28126
|
+
"edit_resource",
|
28127
|
+
"edit_resource!",
|
28128
|
+
"elapsed_time",
|
28129
|
+
"enclosing_provider",
|
28130
|
+
"enclosing_provider=",
|
28131
|
+
"encrypted?",
|
28132
|
+
"enum_for",
|
28133
|
+
"eql?",
|
28134
|
+
"equal?",
|
28135
|
+
"events",
|
28136
|
+
"extend",
|
28137
|
+
"ffi_yajl",
|
28138
|
+
"filename_to_qualified_string",
|
28139
|
+
"find_resource",
|
28140
|
+
"find_resource!",
|
28141
|
+
"forced_32bit_override_required?",
|
28142
|
+
"freeze",
|
28143
|
+
"frozen?",
|
28144
|
+
"gem",
|
28145
|
+
"guard_interpreter",
|
28146
|
+
"hash",
|
28147
|
+
"identity",
|
28148
|
+
"ignore_failure",
|
28149
|
+
"ignore_failure=",
|
28150
|
+
"immediate_notifications",
|
28151
|
+
"inherits",
|
28152
|
+
"inspect",
|
28153
|
+
"instance_eval",
|
28154
|
+
"instance_exec",
|
28155
|
+
"instance_of?",
|
28156
|
+
"instance_variable_defined?",
|
28157
|
+
"instance_variable_get",
|
28158
|
+
"instance_variable_set",
|
28159
|
+
"instance_variables",
|
28160
|
+
"is_a?",
|
28161
|
+
"is_i386_process_on_x86_64_windows?",
|
28162
|
+
"itself",
|
28163
|
+
"kind_of?",
|
28164
|
+
"lazy",
|
28165
|
+
"load_from",
|
28166
|
+
"logger",
|
28167
|
+
"lookup_provider_constant",
|
28168
|
+
"method",
|
28169
|
+
"method_missing",
|
28170
|
+
"methods",
|
28171
|
+
"name",
|
28172
|
+
"name=",
|
28173
|
+
"nil?",
|
28174
|
+
"node",
|
28175
|
+
"node_supports_windows_architecture?",
|
28176
|
+
"node_windows_architecture",
|
28177
|
+
"normalize_snake_case_name",
|
28178
|
+
"not_if",
|
28179
|
+
"notifies",
|
28180
|
+
"notifies_before",
|
28181
|
+
"notifies_delayed",
|
28182
|
+
"notifies_immediately",
|
28183
|
+
"object_id",
|
28184
|
+
"older_than_win_2012_or_8?",
|
28185
|
+
"only_if",
|
28186
|
+
"params",
|
28187
|
+
"params=",
|
28188
|
+
"path",
|
28189
|
+
"path=",
|
28190
|
+
"platform?",
|
28191
|
+
"platform_family?",
|
28192
|
+
"powershell_exec",
|
28193
|
+
"powershell_out",
|
28194
|
+
"powershell_out!",
|
28195
|
+
"pretty_inspect",
|
28196
|
+
"pretty_print",
|
28197
|
+
"pretty_print_cycle",
|
28198
|
+
"pretty_print_inspect",
|
28199
|
+
"pretty_print_instance_variables",
|
28200
|
+
"private_methods",
|
28201
|
+
"property_description",
|
28202
|
+
"property_is_set?",
|
28203
|
+
"protected_methods",
|
28204
|
+
"provider",
|
28205
|
+
"provider=",
|
28206
|
+
"provider_for_action",
|
28207
|
+
"public_method",
|
28208
|
+
"public_methods",
|
28209
|
+
"public_send",
|
28210
|
+
"reboot_pending?",
|
28211
|
+
"recipe_name",
|
28212
|
+
"recipe_name=",
|
28213
|
+
"registry_data_exists?",
|
28214
|
+
"registry_get_subkeys",
|
28215
|
+
"registry_get_values",
|
28216
|
+
"registry_has_subkeys?",
|
28217
|
+
"registry_key_exists?",
|
28218
|
+
"registry_value_exists?",
|
28219
|
+
"remove_instance_variable",
|
28220
|
+
"reset_property",
|
28221
|
+
"resolve_notification_references",
|
28222
|
+
"resource_initializing",
|
28223
|
+
"resource_initializing=",
|
28224
|
+
"resource_name",
|
28225
|
+
"resources",
|
28226
|
+
"respond_to?",
|
28227
|
+
"restore_wow64_file_redirection",
|
28228
|
+
"retries",
|
28229
|
+
"retries=",
|
28230
|
+
"retry_delay",
|
28231
|
+
"retry_delay=",
|
28232
|
+
"rights",
|
28233
|
+
"run_action",
|
28234
|
+
"run_context",
|
28235
|
+
"run_context=",
|
28236
|
+
"search",
|
28237
|
+
"send",
|
28238
|
+
"sensitive",
|
28239
|
+
"sensitive=",
|
28240
|
+
"set_or_return",
|
28241
|
+
"shell_out",
|
28242
|
+
"shell_out!",
|
28243
|
+
"shell_out_compact",
|
28244
|
+
"shell_out_compact!",
|
28245
|
+
"shell_out_compact_timeout",
|
28246
|
+
"shell_out_compact_timeout!",
|
28247
|
+
"shell_out_with_systems_locale",
|
28248
|
+
"shell_out_with_systems_locale!",
|
28249
|
+
"should_skip?",
|
28250
|
+
"singleton_class",
|
28251
|
+
"singleton_method",
|
28252
|
+
"singleton_methods",
|
28253
|
+
"snake_case_basename",
|
28254
|
+
"source_line",
|
28255
|
+
"source_line=",
|
28256
|
+
"source_line_file",
|
28257
|
+
"source_line_number",
|
28258
|
+
"state_for_resource_reporter",
|
28259
|
+
"subscribes",
|
28260
|
+
"taint",
|
28261
|
+
"tainted?",
|
28262
|
+
"tap",
|
28263
|
+
"to_enum",
|
28264
|
+
"to_h",
|
28265
|
+
"to_hash",
|
28266
|
+
"to_json",
|
28267
|
+
"to_s",
|
28268
|
+
"to_text",
|
28269
|
+
"to_yaml",
|
28270
|
+
"trust",
|
28271
|
+
"untaint",
|
28272
|
+
"untrust",
|
28273
|
+
"untrusted?",
|
28274
|
+
"updated",
|
28275
|
+
"updated?",
|
28276
|
+
"updated_by_last_action",
|
28277
|
+
"updated_by_last_action?",
|
28278
|
+
"valid_windows_architecture?",
|
28279
|
+
"validate",
|
28280
|
+
"validate_action",
|
28281
|
+
"validate_resource_spec!",
|
28282
|
+
"value_for_platform",
|
28283
|
+
"value_for_platform_family",
|
28284
|
+
"value_to_text",
|
28285
|
+
"with_os_architecture",
|
28286
|
+
"with_run_context",
|
28287
|
+
"wow64_architecture_override_required?",
|
28288
|
+
"wow64_directory",
|
28289
|
+
"yield_self"
|
28290
|
+
],
|
28291
|
+
"windows_printer": [
|
28292
|
+
"!",
|
28293
|
+
"!=",
|
28294
|
+
"!~",
|
28295
|
+
"<=>",
|
28296
|
+
"==",
|
28297
|
+
"===",
|
28298
|
+
"=~",
|
28299
|
+
"__id__",
|
28300
|
+
"__send__",
|
28301
|
+
"a_to_s",
|
28302
|
+
"action",
|
28303
|
+
"action=",
|
28304
|
+
"after_created",
|
28305
|
+
"allowed_actions",
|
28306
|
+
"allowed_actions=",
|
28307
|
+
"as_json",
|
28308
|
+
"assert_valid_windows_architecture!",
|
28309
|
+
"before_notifications",
|
28310
|
+
"build_resource",
|
28311
|
+
"class",
|
28312
|
+
"clean_array",
|
28313
|
+
"clone",
|
28314
|
+
"comment",
|
28315
|
+
"comment=",
|
28316
|
+
"constantize",
|
28317
|
+
"convert_to_class_name",
|
28318
|
+
"convert_to_snake_case",
|
28319
|
+
"cookbook_name",
|
28320
|
+
"cookbook_name=",
|
28321
|
+
"cookbook_version",
|
28322
|
+
"current_value",
|
28323
|
+
"current_value_does_not_exist!",
|
28324
|
+
"custom_exception_message",
|
28325
|
+
"customize_exception",
|
28326
|
+
"data_bag",
|
28327
|
+
"data_bag_item",
|
28328
|
+
"dclone",
|
28329
|
+
"declare_resource",
|
28330
|
+
"declared_key",
|
28331
|
+
"declared_type",
|
28332
|
+
"declared_type=",
|
28333
|
+
"default",
|
28334
|
+
"default=",
|
28335
|
+
"default_guard_interpreter",
|
28336
|
+
"define_singleton_method",
|
28337
|
+
"defined_at",
|
28338
|
+
"delayed_action",
|
28339
|
+
"delayed_notifications",
|
28340
|
+
"delete_resource",
|
28341
|
+
"delete_resource!",
|
28342
|
+
"deny_rights",
|
28343
|
+
"deprecated_attr",
|
28344
|
+
"deprecated_attr_reader",
|
28345
|
+
"deprecated_attr_writer",
|
28346
|
+
"deprecated_ivar",
|
28347
|
+
"device_id",
|
28348
|
+
"device_id=",
|
28349
|
+
"disable_wow64_file_redirection",
|
28350
|
+
"display",
|
28351
|
+
"docker?",
|
28352
|
+
"driver_name",
|
28353
|
+
"driver_name=",
|
28354
|
+
"dup",
|
28355
|
+
"edit_resource",
|
28356
|
+
"edit_resource!",
|
28357
|
+
"elapsed_time",
|
28358
|
+
"enclosing_provider",
|
28359
|
+
"enclosing_provider=",
|
28360
|
+
"encrypted?",
|
28361
|
+
"enum_for",
|
28362
|
+
"eql?",
|
28363
|
+
"equal?",
|
28364
|
+
"events",
|
28365
|
+
"exists",
|
28366
|
+
"exists=",
|
28367
|
+
"extend",
|
28368
|
+
"ffi_yajl",
|
28369
|
+
"filename_to_qualified_string",
|
28370
|
+
"find_resource",
|
28371
|
+
"find_resource!",
|
28372
|
+
"forced_32bit_override_required?",
|
28373
|
+
"freeze",
|
28374
|
+
"frozen?",
|
28375
|
+
"gem",
|
28376
|
+
"guard_interpreter",
|
28377
|
+
"hash",
|
28378
|
+
"identity",
|
28379
|
+
"ignore_failure",
|
28380
|
+
"ignore_failure=",
|
28381
|
+
"immediate_notifications",
|
28382
|
+
"inherits",
|
28383
|
+
"inspect",
|
28384
|
+
"instance_eval",
|
28385
|
+
"instance_exec",
|
28386
|
+
"instance_of?",
|
28387
|
+
"instance_variable_defined?",
|
28388
|
+
"instance_variable_get",
|
28389
|
+
"instance_variable_set",
|
28390
|
+
"instance_variables",
|
28391
|
+
"ipv4_address",
|
28392
|
+
"ipv4_address=",
|
28393
|
+
"is_a?",
|
28394
|
+
"is_i386_process_on_x86_64_windows?",
|
28395
|
+
"itself",
|
28396
|
+
"kind_of?",
|
28397
|
+
"lazy",
|
28398
|
+
"load_current_value!",
|
28399
|
+
"load_from",
|
28400
|
+
"location",
|
28401
|
+
"location=",
|
28402
|
+
"logger",
|
28403
|
+
"lookup_provider_constant",
|
28404
|
+
"method",
|
28405
|
+
"method_missing",
|
28406
|
+
"methods",
|
28407
|
+
"name",
|
28408
|
+
"name=",
|
28409
|
+
"nil?",
|
28410
|
+
"node",
|
28411
|
+
"node_supports_windows_architecture?",
|
28412
|
+
"node_windows_architecture",
|
28413
|
+
"normalize_snake_case_name",
|
28414
|
+
"not_if",
|
28415
|
+
"notifies",
|
28416
|
+
"notifies_before",
|
28417
|
+
"notifies_delayed",
|
28418
|
+
"notifies_immediately",
|
28419
|
+
"object_id",
|
28420
|
+
"older_than_win_2012_or_8?",
|
28421
|
+
"only_if",
|
28422
|
+
"params",
|
28423
|
+
"params=",
|
28424
|
+
"platform?",
|
28425
|
+
"platform_family?",
|
28426
|
+
"powershell_exec",
|
28427
|
+
"powershell_out",
|
28428
|
+
"powershell_out!",
|
28429
|
+
"pretty_inspect",
|
28430
|
+
"pretty_print",
|
28431
|
+
"pretty_print_cycle",
|
28432
|
+
"pretty_print_inspect",
|
28433
|
+
"pretty_print_instance_variables",
|
28434
|
+
"printer_exists?",
|
28435
|
+
"private_methods",
|
28436
|
+
"property_description",
|
28437
|
+
"property_is_set?",
|
28438
|
+
"protected_methods",
|
28439
|
+
"provider",
|
28440
|
+
"provider=",
|
28441
|
+
"provider_for_action",
|
28442
|
+
"public_method",
|
28443
|
+
"public_methods",
|
28444
|
+
"public_send",
|
28445
|
+
"reboot_pending?",
|
28446
|
+
"recipe_name",
|
28447
|
+
"recipe_name=",
|
28448
|
+
"registry_data_exists?",
|
28449
|
+
"registry_get_subkeys",
|
28450
|
+
"registry_get_values",
|
28451
|
+
"registry_has_subkeys?",
|
28452
|
+
"registry_key_exists?",
|
28453
|
+
"registry_value_exists?",
|
28454
|
+
"remove_instance_variable",
|
28455
|
+
"reset_property",
|
28456
|
+
"resolve_notification_references",
|
28457
|
+
"resource_initializing",
|
28458
|
+
"resource_initializing=",
|
28459
|
+
"resource_name",
|
28460
|
+
"resources",
|
28461
|
+
"respond_to?",
|
28462
|
+
"restore_wow64_file_redirection",
|
28463
|
+
"retries",
|
28464
|
+
"retries=",
|
28465
|
+
"retry_delay",
|
28466
|
+
"retry_delay=",
|
28467
|
+
"rights",
|
28468
|
+
"run_action",
|
28469
|
+
"run_context",
|
28470
|
+
"run_context=",
|
28471
|
+
"search",
|
28472
|
+
"send",
|
28473
|
+
"sensitive",
|
28474
|
+
"sensitive=",
|
28475
|
+
"set_or_return",
|
28476
|
+
"share_name",
|
27646
28477
|
"share_name=",
|
27647
28478
|
"shared",
|
27648
28479
|
"shared=",
|
@@ -27669,6 +28500,7 @@
|
|
27669
28500
|
"tainted?",
|
27670
28501
|
"tap",
|
27671
28502
|
"to_enum",
|
28503
|
+
"to_h",
|
27672
28504
|
"to_hash",
|
27673
28505
|
"to_json",
|
27674
28506
|
"to_s",
|
@@ -27903,6 +28735,7 @@
|
|
27903
28735
|
"tainted?",
|
27904
28736
|
"tap",
|
27905
28737
|
"to_enum",
|
28738
|
+
"to_h",
|
27906
28739
|
"to_hash",
|
27907
28740
|
"to_json",
|
27908
28741
|
"to_s",
|
@@ -28156,6 +28989,7 @@
|
|
28156
28989
|
"timeout",
|
28157
28990
|
"timeout=",
|
28158
28991
|
"to_enum",
|
28992
|
+
"to_h",
|
28159
28993
|
"to_hash",
|
28160
28994
|
"to_json",
|
28161
28995
|
"to_s",
|
@@ -28422,6 +29256,7 @@
|
|
28422
29256
|
"tap",
|
28423
29257
|
"timeout",
|
28424
29258
|
"to_enum",
|
29259
|
+
"to_h",
|
28425
29260
|
"to_hash",
|
28426
29261
|
"to_json",
|
28427
29262
|
"to_s",
|
@@ -28449,6 +29284,252 @@
|
|
28449
29284
|
"wow64_directory",
|
28450
29285
|
"yield_self"
|
28451
29286
|
],
|
29287
|
+
"windows_share": [
|
29288
|
+
"!",
|
29289
|
+
"!=",
|
29290
|
+
"!~",
|
29291
|
+
"<=>",
|
29292
|
+
"==",
|
29293
|
+
"===",
|
29294
|
+
"=~",
|
29295
|
+
"__id__",
|
29296
|
+
"__send__",
|
29297
|
+
"a_to_s",
|
29298
|
+
"action",
|
29299
|
+
"action=",
|
29300
|
+
"after_created",
|
29301
|
+
"allowed_actions",
|
29302
|
+
"allowed_actions=",
|
29303
|
+
"as_json",
|
29304
|
+
"assert_valid_windows_architecture!",
|
29305
|
+
"before_notifications",
|
29306
|
+
"build_resource",
|
29307
|
+
"ca_timeout",
|
29308
|
+
"ca_timeout=",
|
29309
|
+
"change_users",
|
29310
|
+
"change_users=",
|
29311
|
+
"class",
|
29312
|
+
"clean_array",
|
29313
|
+
"clone",
|
29314
|
+
"concurrent_user_limit",
|
29315
|
+
"concurrent_user_limit=",
|
29316
|
+
"constantize",
|
29317
|
+
"continuously_available",
|
29318
|
+
"continuously_available=",
|
29319
|
+
"convert_to_class_name",
|
29320
|
+
"convert_to_snake_case",
|
29321
|
+
"cookbook_name",
|
29322
|
+
"cookbook_name=",
|
29323
|
+
"cookbook_version",
|
29324
|
+
"current_value",
|
29325
|
+
"current_value_does_not_exist!",
|
29326
|
+
"custom_exception_message",
|
29327
|
+
"customize_exception",
|
29328
|
+
"data_bag",
|
29329
|
+
"data_bag_item",
|
29330
|
+
"dclone",
|
29331
|
+
"declare_resource",
|
29332
|
+
"declared_key",
|
29333
|
+
"declared_type",
|
29334
|
+
"declared_type=",
|
29335
|
+
"default_guard_interpreter",
|
29336
|
+
"define_singleton_method",
|
29337
|
+
"defined_at",
|
29338
|
+
"delayed_action",
|
29339
|
+
"delayed_notifications",
|
29340
|
+
"delete_resource",
|
29341
|
+
"delete_resource!",
|
29342
|
+
"deny_rights",
|
29343
|
+
"deprecated_attr",
|
29344
|
+
"deprecated_attr_reader",
|
29345
|
+
"deprecated_attr_writer",
|
29346
|
+
"deprecated_ivar",
|
29347
|
+
"description",
|
29348
|
+
"description=",
|
29349
|
+
"disable_wow64_file_redirection",
|
29350
|
+
"display",
|
29351
|
+
"docker?",
|
29352
|
+
"dup",
|
29353
|
+
"edit_resource",
|
29354
|
+
"edit_resource!",
|
29355
|
+
"elapsed_time",
|
29356
|
+
"enclosing_provider",
|
29357
|
+
"enclosing_provider=",
|
29358
|
+
"encrypt_data",
|
29359
|
+
"encrypt_data=",
|
29360
|
+
"encrypted?",
|
29361
|
+
"enum_for",
|
29362
|
+
"eql?",
|
29363
|
+
"equal?",
|
29364
|
+
"events",
|
29365
|
+
"extend",
|
29366
|
+
"ffi_yajl",
|
29367
|
+
"filename_to_qualified_string",
|
29368
|
+
"find_resource",
|
29369
|
+
"find_resource!",
|
29370
|
+
"forced_32bit_override_required?",
|
29371
|
+
"freeze",
|
29372
|
+
"frozen?",
|
29373
|
+
"full_users",
|
29374
|
+
"full_users=",
|
29375
|
+
"gem",
|
29376
|
+
"guard_interpreter",
|
29377
|
+
"hash",
|
29378
|
+
"identity",
|
29379
|
+
"ignore_failure",
|
29380
|
+
"ignore_failure=",
|
29381
|
+
"immediate_notifications",
|
29382
|
+
"inherits",
|
29383
|
+
"inspect",
|
29384
|
+
"instance_eval",
|
29385
|
+
"instance_exec",
|
29386
|
+
"instance_of?",
|
29387
|
+
"instance_variable_defined?",
|
29388
|
+
"instance_variable_get",
|
29389
|
+
"instance_variable_set",
|
29390
|
+
"instance_variables",
|
29391
|
+
"is_a?",
|
29392
|
+
"is_i386_process_on_x86_64_windows?",
|
29393
|
+
"itself",
|
29394
|
+
"kind_of?",
|
29395
|
+
"lazy",
|
29396
|
+
"load_current_value!",
|
29397
|
+
"load_from",
|
29398
|
+
"logger",
|
29399
|
+
"lookup_provider_constant",
|
29400
|
+
"method",
|
29401
|
+
"method_missing",
|
29402
|
+
"methods",
|
29403
|
+
"name",
|
29404
|
+
"name=",
|
29405
|
+
"nil?",
|
29406
|
+
"node",
|
29407
|
+
"node_supports_windows_architecture?",
|
29408
|
+
"node_windows_architecture",
|
29409
|
+
"normalize_snake_case_name",
|
29410
|
+
"not_if",
|
29411
|
+
"notifies",
|
29412
|
+
"notifies_before",
|
29413
|
+
"notifies_delayed",
|
29414
|
+
"notifies_immediately",
|
29415
|
+
"object_id",
|
29416
|
+
"older_than_win_2012_or_8?",
|
29417
|
+
"only_if",
|
29418
|
+
"params",
|
29419
|
+
"params=",
|
29420
|
+
"parse_permissions",
|
29421
|
+
"path",
|
29422
|
+
"path=",
|
29423
|
+
"platform?",
|
29424
|
+
"platform_family?",
|
29425
|
+
"powershell_exec",
|
29426
|
+
"powershell_out",
|
29427
|
+
"powershell_out!",
|
29428
|
+
"pretty_inspect",
|
29429
|
+
"pretty_print",
|
29430
|
+
"pretty_print_cycle",
|
29431
|
+
"pretty_print_inspect",
|
29432
|
+
"pretty_print_instance_variables",
|
29433
|
+
"private_methods",
|
29434
|
+
"property_description",
|
29435
|
+
"property_is_set?",
|
29436
|
+
"protected_methods",
|
29437
|
+
"provider",
|
29438
|
+
"provider=",
|
29439
|
+
"provider_for_action",
|
29440
|
+
"public_method",
|
29441
|
+
"public_methods",
|
29442
|
+
"public_send",
|
29443
|
+
"read_users",
|
29444
|
+
"read_users=",
|
29445
|
+
"reboot_pending?",
|
29446
|
+
"recipe_name",
|
29447
|
+
"recipe_name=",
|
29448
|
+
"registry_data_exists?",
|
29449
|
+
"registry_get_subkeys",
|
29450
|
+
"registry_get_values",
|
29451
|
+
"registry_has_subkeys?",
|
29452
|
+
"registry_key_exists?",
|
29453
|
+
"registry_value_exists?",
|
29454
|
+
"remove_instance_variable",
|
29455
|
+
"reset_property",
|
29456
|
+
"resolve_notification_references",
|
29457
|
+
"resource_initializing",
|
29458
|
+
"resource_initializing=",
|
29459
|
+
"resource_name",
|
29460
|
+
"resources",
|
29461
|
+
"respond_to?",
|
29462
|
+
"restore_wow64_file_redirection",
|
29463
|
+
"retries",
|
29464
|
+
"retries=",
|
29465
|
+
"retry_delay",
|
29466
|
+
"retry_delay=",
|
29467
|
+
"rights",
|
29468
|
+
"run_action",
|
29469
|
+
"run_context",
|
29470
|
+
"run_context=",
|
29471
|
+
"scope_name",
|
29472
|
+
"scope_name=",
|
29473
|
+
"search",
|
29474
|
+
"send",
|
29475
|
+
"sensitive",
|
29476
|
+
"sensitive=",
|
29477
|
+
"set_or_return",
|
29478
|
+
"share_name",
|
29479
|
+
"share_name=",
|
29480
|
+
"shell_out",
|
29481
|
+
"shell_out!",
|
29482
|
+
"shell_out_compact",
|
29483
|
+
"shell_out_compact!",
|
29484
|
+
"shell_out_compact_timeout",
|
29485
|
+
"shell_out_compact_timeout!",
|
29486
|
+
"shell_out_with_systems_locale",
|
29487
|
+
"shell_out_with_systems_locale!",
|
29488
|
+
"should_skip?",
|
29489
|
+
"singleton_class",
|
29490
|
+
"singleton_method",
|
29491
|
+
"singleton_methods",
|
29492
|
+
"snake_case_basename",
|
29493
|
+
"source_line",
|
29494
|
+
"source_line=",
|
29495
|
+
"source_line_file",
|
29496
|
+
"source_line_number",
|
29497
|
+
"state_for_resource_reporter",
|
29498
|
+
"stripped_account",
|
29499
|
+
"subscribes",
|
29500
|
+
"taint",
|
29501
|
+
"tainted?",
|
29502
|
+
"tap",
|
29503
|
+
"temporary",
|
29504
|
+
"temporary=",
|
29505
|
+
"to_enum",
|
29506
|
+
"to_h",
|
29507
|
+
"to_hash",
|
29508
|
+
"to_json",
|
29509
|
+
"to_s",
|
29510
|
+
"to_text",
|
29511
|
+
"to_yaml",
|
29512
|
+
"trust",
|
29513
|
+
"untaint",
|
29514
|
+
"untrust",
|
29515
|
+
"untrusted?",
|
29516
|
+
"updated",
|
29517
|
+
"updated?",
|
29518
|
+
"updated_by_last_action",
|
29519
|
+
"updated_by_last_action?",
|
29520
|
+
"valid_windows_architecture?",
|
29521
|
+
"validate",
|
29522
|
+
"validate_action",
|
29523
|
+
"validate_resource_spec!",
|
29524
|
+
"value_for_platform",
|
29525
|
+
"value_for_platform_family",
|
29526
|
+
"value_to_text",
|
29527
|
+
"with_os_architecture",
|
29528
|
+
"with_run_context",
|
29529
|
+
"wow64_architecture_override_required?",
|
29530
|
+
"wow64_directory",
|
29531
|
+
"yield_self"
|
29532
|
+
],
|
28452
29533
|
"windows_shortcut": [
|
28453
29534
|
"!",
|
28454
29535
|
"!=",
|
@@ -28654,6 +29735,7 @@
|
|
28654
29735
|
"target",
|
28655
29736
|
"target=",
|
28656
29737
|
"to_enum",
|
29738
|
+
"to_h",
|
28657
29739
|
"to_hash",
|
28658
29740
|
"to_json",
|
28659
29741
|
"to_s",
|
@@ -28703,10 +29785,6 @@
|
|
28703
29785
|
"class",
|
28704
29786
|
"clean_array",
|
28705
29787
|
"clone",
|
28706
|
-
"command",
|
28707
|
-
"command=",
|
28708
|
-
"command_arguments",
|
28709
|
-
"command_arguments=",
|
28710
29788
|
"constantize",
|
28711
29789
|
"convert_to_class_name",
|
28712
29790
|
"convert_to_snake_case",
|
@@ -28717,12 +29795,8 @@
|
|
28717
29795
|
"current_value_does_not_exist!",
|
28718
29796
|
"custom_exception_message",
|
28719
29797
|
"customize_exception",
|
28720
|
-
"cwd",
|
28721
|
-
"cwd=",
|
28722
29798
|
"data_bag",
|
28723
29799
|
"data_bag_item",
|
28724
|
-
"day",
|
28725
|
-
"day=",
|
28726
29800
|
"dclone",
|
28727
29801
|
"declare_resource",
|
28728
29802
|
"declared_key",
|
@@ -28741,8 +29815,6 @@
|
|
28741
29815
|
"deprecated_attr_writer",
|
28742
29816
|
"deprecated_ivar",
|
28743
29817
|
"disable_wow64_file_redirection",
|
28744
|
-
"disallow_start_if_on_batteries",
|
28745
|
-
"disallow_start_if_on_batteries=",
|
28746
29818
|
"display",
|
28747
29819
|
"docker?",
|
28748
29820
|
"dup",
|
@@ -28756,30 +29828,18 @@
|
|
28756
29828
|
"eql?",
|
28757
29829
|
"equal?",
|
28758
29830
|
"events",
|
28759
|
-
"execution_time_limit",
|
28760
|
-
"execution_time_limit=",
|
28761
|
-
"exists",
|
28762
|
-
"exists=",
|
28763
29831
|
"extend",
|
28764
29832
|
"ffi_yajl",
|
28765
29833
|
"filename_to_qualified_string",
|
28766
29834
|
"find_resource",
|
28767
29835
|
"find_resource!",
|
28768
|
-
"force",
|
28769
|
-
"force=",
|
28770
29836
|
"forced_32bit_override_required?",
|
28771
29837
|
"freeze",
|
28772
|
-
"frequency",
|
28773
|
-
"frequency=",
|
28774
|
-
"frequency_modifier",
|
28775
|
-
"frequency_modifier=",
|
28776
29838
|
"frozen?",
|
28777
29839
|
"gem",
|
28778
29840
|
"guard_interpreter",
|
28779
29841
|
"hash",
|
28780
29842
|
"identity",
|
28781
|
-
"idle_time",
|
28782
|
-
"idle_time=",
|
28783
29843
|
"ignore_failure",
|
28784
29844
|
"ignore_failure=",
|
28785
29845
|
"immediate_notifications",
|
@@ -28792,8 +29852,6 @@
|
|
28792
29852
|
"instance_variable_get",
|
28793
29853
|
"instance_variable_set",
|
28794
29854
|
"instance_variables",
|
28795
|
-
"interactive_enabled",
|
28796
|
-
"interactive_enabled=",
|
28797
29855
|
"is_a?",
|
28798
29856
|
"is_i386_process_on_x86_64_windows?",
|
28799
29857
|
"itself",
|
@@ -28805,12 +29863,6 @@
|
|
28805
29863
|
"method",
|
28806
29864
|
"method_missing",
|
28807
29865
|
"methods",
|
28808
|
-
"minutes_duration",
|
28809
|
-
"minutes_duration=",
|
28810
|
-
"minutes_interval",
|
28811
|
-
"minutes_interval=",
|
28812
|
-
"months",
|
28813
|
-
"months=",
|
28814
29866
|
"name",
|
28815
29867
|
"name=",
|
28816
29868
|
"nil?",
|
@@ -28828,8 +29880,6 @@
|
|
28828
29880
|
"only_if",
|
28829
29881
|
"params",
|
28830
29882
|
"params=",
|
28831
|
-
"password",
|
28832
|
-
"password=",
|
28833
29883
|
"platform?",
|
28834
29884
|
"platform_family?",
|
28835
29885
|
"powershell_exec",
|
@@ -28840,8 +29890,6 @@
|
|
28840
29890
|
"pretty_print_cycle",
|
28841
29891
|
"pretty_print_inspect",
|
28842
29892
|
"pretty_print_instance_variables",
|
28843
|
-
"priority",
|
28844
|
-
"priority=",
|
28845
29893
|
"private_methods",
|
28846
29894
|
"property_description",
|
28847
29895
|
"property_is_set?",
|
@@ -28852,8 +29900,6 @@
|
|
28852
29900
|
"public_method",
|
28853
29901
|
"public_methods",
|
28854
29902
|
"public_send",
|
28855
|
-
"random_delay",
|
28856
|
-
"random_delay=",
|
28857
29903
|
"reboot_pending?",
|
28858
29904
|
"recipe_name",
|
28859
29905
|
"recipe_name=",
|
@@ -28880,8 +29926,6 @@
|
|
28880
29926
|
"run_action",
|
28881
29927
|
"run_context",
|
28882
29928
|
"run_context=",
|
28883
|
-
"run_level",
|
28884
|
-
"run_level=",
|
28885
29929
|
"search",
|
28886
29930
|
"send",
|
28887
29931
|
"sensitive",
|
@@ -28904,22 +29948,13 @@
|
|
28904
29948
|
"source_line=",
|
28905
29949
|
"source_line_file",
|
28906
29950
|
"source_line_number",
|
28907
|
-
"start_day",
|
28908
|
-
"start_day=",
|
28909
|
-
"start_time",
|
28910
|
-
"start_time=",
|
28911
29951
|
"state_for_resource_reporter",
|
28912
|
-
"stop_if_going_on_batteries",
|
28913
|
-
"stop_if_going_on_batteries=",
|
28914
29952
|
"subscribes",
|
28915
29953
|
"taint",
|
28916
29954
|
"tainted?",
|
28917
29955
|
"tap",
|
28918
|
-
"task",
|
28919
|
-
"task=",
|
28920
|
-
"task_name",
|
28921
|
-
"task_name=",
|
28922
29956
|
"to_enum",
|
29957
|
+
"to_h",
|
28923
29958
|
"to_hash",
|
28924
29959
|
"to_json",
|
28925
29960
|
"to_s",
|
@@ -28933,8 +29968,6 @@
|
|
28933
29968
|
"updated?",
|
28934
29969
|
"updated_by_last_action",
|
28935
29970
|
"updated_by_last_action?",
|
28936
|
-
"user",
|
28937
|
-
"user=",
|
28938
29971
|
"valid_windows_architecture?",
|
28939
29972
|
"validate",
|
28940
29973
|
"validate_action",
|
@@ -29144,6 +30177,7 @@
|
|
29144
30177
|
"tainted?",
|
29145
30178
|
"tap",
|
29146
30179
|
"to_enum",
|
30180
|
+
"to_h",
|
29147
30181
|
"to_hash",
|
29148
30182
|
"to_json",
|
29149
30183
|
"to_s",
|
@@ -29384,6 +30418,7 @@
|
|
29384
30418
|
"timeout",
|
29385
30419
|
"timeout=",
|
29386
30420
|
"to_enum",
|
30421
|
+
"to_h",
|
29387
30422
|
"to_hash",
|
29388
30423
|
"to_json",
|
29389
30424
|
"to_s",
|
@@ -29690,6 +30725,7 @@
|
|
29690
30725
|
"timeout",
|
29691
30726
|
"timeout=",
|
29692
30727
|
"to_enum",
|
30728
|
+
"to_h",
|
29693
30729
|
"to_hash",
|
29694
30730
|
"to_json",
|
29695
30731
|
"to_s",
|
@@ -29796,6 +30832,8 @@
|
|
29796
30832
|
"freeze",
|
29797
30833
|
"frozen?",
|
29798
30834
|
"gem",
|
30835
|
+
"global_options",
|
30836
|
+
"global_options=",
|
29799
30837
|
"gpg_check",
|
29800
30838
|
"gpg_check=",
|
29801
30839
|
"guard_interpreter",
|
@@ -29927,6 +30965,7 @@
|
|
29927
30965
|
"timeout",
|
29928
30966
|
"timeout=",
|
29929
30967
|
"to_enum",
|
30968
|
+
"to_h",
|
29930
30969
|
"to_hash",
|
29931
30970
|
"to_json",
|
29932
30971
|
"to_s",
|
@@ -30180,6 +31219,7 @@
|
|
30180
31219
|
"tainted?",
|
30181
31220
|
"tap",
|
30182
31221
|
"to_enum",
|
31222
|
+
"to_h",
|
30183
31223
|
"to_hash",
|
30184
31224
|
"to_json",
|
30185
31225
|
"to_s",
|