Resource Type: wls_safagent

Defined in:
lib/puppet/type/wls_safagent.rb
Providers:
simple

Overview

This resource allows you to manage a SAF agent in an WebLogic domain.

Here is an example on how you should use this:

wls_safagent { 'jmsSAFAgent1':
  ensure              => 'present',
  persistentstore     => 'jmsFileSAFAgent1',
  persistentstoretype => 'FileStore',
  servicetype         => 'Sending-only',
  target              => ['wlsServer1'],
  targettype          => ['Server'],
}

In this example you are managing a SAF agent in the default domain. When you want to manage a SAF agent in a specific domain, you can use:

wls_safagent { 'my_domain/jmsSAFAgent2':
  ensure      => 'present',
  servicetype => 'Both',
  target      => ['wlsServer2'],
  targettype  => ['Server'],
}

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_safagent` resource. You will seldom need to specify this — Puppet will usually discover the appropriate provider for your platform.