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',
}

Properties

  • ensure (defaults to: present)

    The basic property that the resource should be in.

    Supported values:
    • present
    • absent

Parameters

  • provider

    The specific backend to use for this ‘wls_jms_sort_destination_key` resource. You will seldom need to specify this — Puppet will usually discover the appropriate provider for your platform.