Resource Type: wls_jms_sort_destination_key
- Defined in:
- lib/puppet/type/wls_jms_sort_destination_key.rb
- Providers:
-
simple
Overview
This resource allows you to manage the sort destination key in a JMS module of a WebLogic domain.
Here is an example on how you should use this:
wls_jms_sort_destination_key { 'jmsClusterModule:JMSPriority':
ensure => 'present',
key_type => 'Int',
property_name => 'JMSPriority',
sort_order => 'Descending',
}
In this example you are managing a JMS sort destination key in the default domain. When you want to manage a JMS sort destination key in a specific domain, you can use:
wls_jms_sort_destination_key { 'my_domain/jmsClusterModule:JMSRedelivered':
ensure => 'present',
key_type => 'Boolean',
property_name => 'JMSRedelivered',
sort_order => 'Ascending',
}