Skip to content

Commit 0bcaa59

Browse files
committed
reference
1 parent 40e08b4 commit 0bcaa59

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

REFERENCE.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757

5858
### Data types
5959

60-
* [`Elasticsearch::Multipath`](#Elasticsearch--Multipath)
61-
* [`Elasticsearch::Status`](#Elasticsearch--Status)
60+
* [`Elasticsearch::Multipath`](#Elasticsearch--Multipath): Elasticsearch datadir multipath type
61+
* [`Elasticsearch::Status`](#Elasticsearch--Status): Elasticsearch service status type
6262

6363
## Classes
6464

@@ -144,6 +144,7 @@ The following parameters are available in the `elasticsearch` class:
144144
* [`oss`](#-elasticsearch--oss)
145145
* [`package_dir`](#-elasticsearch--package_dir)
146146
* [`package_dl_timeout`](#-elasticsearch--package_dl_timeout)
147+
* [`package_hold`](#-elasticsearch--package_hold)
147148
* [`package_name`](#-elasticsearch--package_name)
148149
* [`package_provider`](#-elasticsearch--package_provider)
149150
* [`package_url`](#-elasticsearch--package_url)
@@ -508,6 +509,14 @@ Data type: `Integer`
508509
For http, https, and ftp downloads, you may set how long the exec resource
509510
may take.
510511

512+
##### <a name="-elasticsearch--package_hold"></a>`package_hold`
513+
514+
Data type: `Boolean`
515+
516+
Set to hold to tell Debian apt/Solaris pkg to hold the package version.
517+
518+
Default value: `false`
519+
511520
##### <a name="-elasticsearch--package_name"></a>`package_name`
512521

513522
Data type: `String`
@@ -3237,13 +3246,13 @@ Returns: `Any` String
32373246

32383247
### <a name="Elasticsearch--Multipath"></a>`Elasticsearch::Multipath`
32393248

3240-
The Elasticsearch::Multipath data type.
3249+
Elasticsearch datadir multipath type
32413250

32423251
Alias of `Variant[Array[Stdlib::Absolutepath], Stdlib::Absolutepath]`
32433252

32443253
### <a name="Elasticsearch--Status"></a>`Elasticsearch::Status`
32453254

3246-
The Elasticsearch::Status data type.
3255+
Elasticsearch service status type
32473256

32483257
Alias of `Enum['enabled', 'disabled', 'running', 'unmanaged']`
32493258

types/multipath.pp

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
# Elasticsearch datadir multipath type
12
type Elasticsearch::Multipath = Variant[Array[Stdlib::Absolutepath], Stdlib::Absolutepath]

types/status.pp

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
# Elasticsearch service status type
12
type Elasticsearch::Status = Enum['enabled', 'disabled', 'running', 'unmanaged']

0 commit comments

Comments
 (0)