3232* [ ` R10k::Webhook::Config::Chatops ` ] ( #R10k--Webhook--Config--Chatops ) : webhook config chatops type
3333* [ ` R10k::Webhook::Config::R10k ` ] ( #R10k--Webhook--Config--R10k ) : webhook config r10k type
3434* [ ` R10k::Webhook::Config::Server ` ] ( #R10k--Webhook--Config--Server ) : webhook config server type
35+ * [ ` R10k::Webhook::Config::Server::Queue ` ] ( #R10k--Webhook--Config--Server--Queue ) : webhook config server queue type
3536* [ ` R10k::Webhook::Config::Server::Tls ` ] ( #R10k--Webhook--Config--Server--Tls ) : webhook config server tls type
3637
3738### Tasks
@@ -533,6 +534,7 @@ The following parameters are available in the `r10k::webhook` class:
533534* [ ` config_path ` ] ( #-r10k--webhook--config_path )
534535* [ ` chatops ` ] ( #-r10k--webhook--chatops )
535536* [ ` tls ` ] ( #-r10k--webhook--tls )
537+ * [ ` queue ` ] ( #-r10k--webhook--queue )
536538* [ ` server ` ] ( #-r10k--webhook--server )
537539* [ ` r10k ` ] ( #-r10k--webhook--r10k )
538540* [ ` config ` ] ( #-r10k--webhook--config )
@@ -635,6 +637,22 @@ Default value:
635637 }
636638```
637639
640+ ##### <a name =" -r10k--webhook--queue " ></a >` queue `
641+
642+ Data type: ` R10k::Webhook::Config::Server::Queue `
643+
644+
645+
646+ Default value:
647+
648+ ``` puppet
649+ {
650+ enabled => false,
651+ max_concurrent_jobs => undef,
652+ max_history_items => undef,
653+ }
654+ ```
655+
638656##### <a name =" -r10k--webhook--server " ></a >` server `
639657
640658Data type: ` R10k::Webhook::Config::Server `
@@ -650,6 +668,7 @@ Default value:
650668 password => 'puppet',
651669 port => 4000,
652670 tls => $tls,
671+ queue => $queue,
653672 }
654673```
655674
@@ -767,6 +786,21 @@ Struct[{
767786 password => Optional[String[1]],
768787 port => Optional[Stdlib::Port],
769788 tls => Optional[R10k::Webhook::Config::Server::Tls],
789+ queue => Optional[R10k::Webhook::Config::Server::Queue],
790+ }]
791+ ```
792+
793+ ### <a name =" R10k--Webhook--Config--Server--Queue " ></a >` R10k::Webhook::Config::Server::Queue `
794+
795+ webhook config server queue type
796+
797+ Alias of
798+
799+ ``` puppet
800+ Struct[{
801+ enabled => Boolean,
802+ max_concurrent_jobs => Optional[Integer],
803+ max_history_items => Optional[Integer],
770804}]
771805```
772806
0 commit comments