wls domain partition
Overview
This resource allows you to manage domain partitions in an WebLogic 12.2.1 domain.
Experience the Power of Puppet for WebLogic
If you want to play and experiment with Puppet and WebLogic, please take a look at our playgrounds. At our playgrounds, we provide you with a pre-installed environment, where you experiment fast and easy.

Attributes
Attribute Name | Short Description |
---|---|
batch_jobs_data_source_jndi_name | The JNDI name of the Batch runtime’s JobRepository data source, which will be used to store data for Batch jobs submitted from applications deployed to the partition. |
batch_jobs_executor_service_name | The name of the application-scoped Managed Executor Service instance that will be used to run Batch jobs that are submitted from applications deployed to the partition. |
data_source_for_job_scheduler | The data source required to support the persistence of jobs scheduled with the job scheduler. |
disable_autorequire | Puppet supports automatic ordering of resources by autorequire. |
disable_corrective_change | Disable the modification of a resource when Puppet decides it is a corrective change. |
disable_corrective_ensure | Disable the creation or removal of a resource when Puppet decides is a corrective change. |
domain | With this parameter, you identify the domain, where your objects is in. |
domain_partition_name | The name of the domain partition. |
eager_tracking_of_resource_metrics_enabled | Determines if tracking of resource consumption metrics of this Partition is initiated eagerly from the time the Partition is started, or if it is initiated lazily on first access of PartitionResourceMetricsRuntimeMBean. |
ensure | The basic property that the resource should be in. |
graceful_shutdown_timeout | The number of seconds a graceful shutdown operation waits before forcing a shut down. |
ignore_sessions_during_shutdown | Indicates whether a graceful shutdown operation drops all HTTP sessions immediately. |
job_scheduler_table_name | The table name to use for storing timers active with the Job Scheduler. |
max_concurrent_long_running_requests | The maximum number of running long-running requests that can be submitted to all the Managed Executor Services or Managed Scheduled Executor Services in the partition on the current server. |
max_concurrent_new_threads | The maximum number of running threads that can be created by all the Managed Thread Factories in the partition on the current server. |
name | The name. |
notes | Optional information that you can include to describe this configuration. |
parallel_deploy_application_modules | Determines if the modules of applications will be deployed in parallel. |
parallel_deploy_applications | Determines if applications will be deployed in parallel. |
partition_id | The ID for this partition. |
partition_life_cycle_timeout_val | The number of seconds a force shutdown operation waits before timing out. |
partition_work_manager | The partition-level work manager policy set by the system administrator for this partition. |
partition_work_manager_ref | A reference to a partition-level work manager policy set by the system administrator. |
primary_identity_domain | The partition’s primary identity domain. |
provider | resource. |
rcm_historical_data_buffer_limit | The maximum number of elements retained for monitoring RCM usage requests over time. |
realm | The security realm for this partition. |
resource_deployment_plan | The contents of this resource’s deployment plan, returned as a byte[] containing the XML. |
resource_deployment_plan_external_descriptors | A zip file containing the external descriptors referenced in the deployment plan. |
resource_deployment_plan_path | The resource deployment plan path. |
resource_manager | The resource manager policy assigned to the partition. |
resource_manager_ref | A resource manager reference from the resource management. |
root_file_system | The full path to the root of this file subsystem of the partition. |
startup_timeout | The timeout value for a partition’s start and resume operations. |
systemfs_create_on_demand | Specifies whether the file system should be created on-demand when the partition is first started. |
systemfs_notes | Optional information that you can include to describe this configuration. |
systemfs_preserved | Specifies whether the file system should be preserved when the partition is deleted. |
systemfs_tags | Return all tags on this Configuration MBean |
tags | Return all tags on this Configuration MBean |
timeout | Timeout for applying a resource. |
upload_directory_name | The directory path on the Administration Server where the uploaded applications for this partition are placed. |
virtual_target | The virtual target for the domain partition |
batch_jobs_data_source_jndi_name
The JNDI name of the Batch runtime’s JobRepository data source, which will be used to store data for Batch jobs submitted from applications deployed to the partition. When a Java EE component submits a Batch job, the Batch runtime updates the JobRepository tables using this data source, which is obtained by looking up the data source’s JNDI name.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
batch_jobs_data_source_jndi_name => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:batch_jobs_data_source_jndi_name']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
batch_jobs_executor_service_name
The name of the application-scoped Managed Executor Service instance that will be used to run Batch jobs that are submitted from applications deployed to the partition. A Managed Executor Service Template by the same name must exist for the domain when a Batch job is submitted in the partition. If this name returns null, then the Batch runtime will use the default Java EE Managed Executor Service that is bound to the default JNDI name of: java:comp/DefaultManagedExecutorService
.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
batch_jobs_executor_service_name => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:batch_jobs_executor_service_name']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
data_source_for_job_scheduler
The data source required to support the persistence of jobs scheduled with the job scheduler.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
data_source_for_job_scheduler => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:data_source_for_job_scheduler']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
disable_autorequire
Puppet supports automatic ordering of resources by autorequire. Sometimes, however, this causes issues. Setting this parameter to true
, disables autorequiring for this specific resource.
USE WITH CAUTION!!
Here is an example on hopw to use this:
...{'domain_name/...':
disableautorequire => true,
...
}
Back to overview of wls_domain_partition
disable_corrective_change
Disable the modification of a resource when Puppet decides it is a corrective change.
(requires easy_type V2.11.0 or higher)
When using a Puppet Server, Puppet knows about adaptive and corrective changes. A corrective change is when Puppet notices that the resource has changed, but the catalog has not changed. This can occur for example, when a user, by accident or willingly, changed something on the system that Puppet is managing. The normal Puppet process then repairs this and puts the resource back in the state as defined in the catalog. This process is precisely what you want most of the time, but not always. This can sometimes also occur when a hardware or network error occurs. Then Puppet cannot correctly determine the current state of the system and thinks the resource is changed, while in fact, it is not. Letting Puppet recreate remove or change the resource in these cases, is NOT wat you want.
Using the disable_corrective_change
parameter, you can disable corrective changes on the current resource.
Here is an example of this:
crucial_resource {'be_carefull':
...
disable_corrective_change => true,
...
}
When a corrective ensure does happen on the resource Puppet will not modify the resource and signal an error:
Error: Corrective change present requested by catalog, but disabled by parameter disable_corrective_change
Error: /Stage[main]/Main/Crucial_resource[be_carefull]/parameter: change from '10' to '20' failed: Corrective change present requested by catalog, but disabled by parameter disable_corrective_change. (corrective)
Back to overview of wls_domain_partition
disable_corrective_ensure
Disable the creation or removal of a resource when Puppet decides is a corrective change.
(requires easy_type V2.11.0 or higher)
When using a Puppet Server, Puppet knows about adaptive and corrective changes. A corrective change is when Puppet notices that the resource has changed, but the catalog has not changed. This can occur for example, when a user, by accident or willingly, changed something on the system that Puppet is managing. The normal Puppet process then repairs this and puts the resource back in the state as defined in the catalog. This process is precisely what you want most of the time, but not always. This can sometimes also occur when a hardware or network error occurs. Then Puppet cannot correctly determine the current state of the system and thinks the resource is changed, while in fact, it is not. Letting Puppet recreate remove or change the resource in these cases, is NOT wat you want.
Using the disable_corrective_ensure
parameter, you can disable corrective ensure present or ensure absent actions on the current resource.
Here is an example of this:
crucial_resource {'be_carefull':
ensure => 'present',
...
disable_corrective_ensure => true,
...
}
When a corrective ensure does happen on the resource Puppet will not create or remove the resource and signal an error:
Error: Corrective ensure present requested by catalog, but disabled by parameter disable_corrective_ensure.
Error: /Stage[main]/Main/Crucial_resource[be_carefull]/ensure: change from 'absent' to 'present' failed: Corrective ensure present requested by catalog, but disabled by parameter disable_corrective_ensure. (corrective)
Back to overview of wls_domain_partition
domain
With this parameter, you identify the domain, where your objects is in.
The domain name is part of the full qualified name of any WebLogic object on a system. Let’s say we want to describe a WebLogic server. The full qualified name is:
wls_server{'domain_name/server_name':
ensure => present,
...
}
When you don’t specify a domain name, Puppet will use default
as domain name. For every domain you want to manage, you’ll have to put a wls_settings
in your manifest.
Back to overview of wls_domain_partition
domain_partition_name
The name of the domain partition.
Back to overview of wls_domain_partition
eager_tracking_of_resource_metrics_enabled
Determines if tracking of resource consumption metrics of this Partition is initiated eagerly from the time the Partition is started, or if it is initiated lazily on first access of PartitionResourceMetricsRuntimeMBean.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
eager_tracking_of_resource_metrics_enabled => 1,
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:eager_tracking_of_resource_metrics_enabled']
...
}
This help text generated from MBean text of the WebLogic server.
Valid values are absent
, 1
, 0
.
Back to overview of wls_domain_partition
ensure
The basic property that the resource should be in.
Valid values are present
, absent
.
Back to overview of wls_domain_partition
graceful_shutdown_timeout
The number of seconds a graceful shutdown operation waits before forcing a shut down. A graceful shutdown gives WebLogic Server subsystems time to complete certain application processing currently in progress. If subsystems are unable to complete processing within the number of seconds that you specify here, the partition will force shutdown automatically. <p/> A value of 0
means that the partition will wait indefinitely for a graceful shutdown to complete. <p/> The graceful shutdown timeout applies only to graceful shutdown operations.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
graceful_shutdown_timeout => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:graceful_shutdown_timeout']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
ignore_sessions_during_shutdown
Indicates whether a graceful shutdown operation drops all HTTP sessions immediately. If this is set to false
, a graceful shutdown operation waits for HTTP sessions to complete or timeout.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
ignore_sessions_during_shutdown => 1,
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:ignore_sessions_during_shutdown']
...
}
This help text generated from MBean text of the WebLogic server.
Valid values are absent
, 1
, 0
.
Back to overview of wls_domain_partition
job_scheduler_table_name
The table name to use for storing timers active with the Job Scheduler.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
job_scheduler_table_name => 'WEBLOGIC_TIMERS'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:job_scheduler_table_name']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
max_concurrent_long_running_requests
The maximum number of running long-running requests that can be submitted to all the Managed Executor Services or Managed Scheduled Executor Services in the partition on the current server.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
max_concurrent_long_running_requests => '50'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:max_concurrent_long_running_requests']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
max_concurrent_new_threads
The maximum number of running threads that can be created by all the Managed Thread Factories in the partition on the current server.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
max_concurrent_new_threads => '50'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:max_concurrent_new_threads']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
name
The name.
Back to overview of wls_domain_partition
notes
Optional information that you can include to describe this configuration. WebLogic Server saves this note in the domain’s configuration file (config.xml
) as XML PCDATA. All left angle brackets (<) are converted to the XML entity <
. Carriage returns/line feeds are preserved. Note: If you create or edit a note from the Administration Console, the Administration Console does not preserve carriage returns/line feeds.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
notes => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:notes']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
parallel_deploy_application_modules
Determines if the modules of applications will be deployed in parallel. This setting can be overridden at the per-application level. See {@link AppDeploymentMBean#isParallelDeployModules()}
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
parallel_deploy_application_modules => 1,
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:parallel_deploy_application_modules']
...
}
This help text generated from MBean text of the WebLogic server.
Valid values are absent
, 1
, 0
.
Back to overview of wls_domain_partition
parallel_deploy_applications
Determines if applications will be deployed in parallel.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
parallel_deploy_applications => 1,
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:parallel_deploy_applications']
...
}
This help text generated from MBean text of the WebLogic server.
Valid values are absent
, 1
, 0
.
Back to overview of wls_domain_partition
partition_id
The ID for this partition.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
partition_id => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:partition_id']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
partition_life_cycle_timeout_val
The number of seconds a force shutdown operation waits before timing out. If the operation does not complete within the configured timeout period, the partition will shutdown automatically if the state of the server at that time was SHUTTING_DOWN
. <p/> A value of 0
means that the partition will wait indefinitely for the life cycle operation to complete.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
partition_life_cycle_timeout_val => '30'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:partition_life_cycle_timeout_val']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
partition_work_manager
The partition-level work manager policy set by the system administrator for this partition.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
partition_work_manager => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:partition_work_manager']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
partition_work_manager_ref
A reference to a partition-level work manager policy set by the system administrator.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
partition_work_manager_ref => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:partition_work_manager_ref']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
primary_identity_domain
The partition’s primary identity domain.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
primary_identity_domain => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:primary_identity_domain']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
provider
The specific backend to use for this wls_domain_partition
resource. You will seldom need to specify this — Puppet will usually discover the appropriate provider for your platform.Available providers are:
- simple
Back to overview of wls_domain_partition
rcm_historical_data_buffer_limit
The maximum number of elements retained for monitoring RCM usage requests over time.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
rcm_historical_data_buffer_limit => '250'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:rcm_historical_data_buffer_limit']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
realm
The security realm for this partition.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
realm => 'a_value'
...
}
Back to overview of wls_domain_partition
resource_deployment_plan
The contents of this resource’s deployment plan, returned as a byte[] containing the XML.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
resource_deployment_plan => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:resource_deployment_plan']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
resource_deployment_plan_external_descriptors
A zip file containing the external descriptors referenced in the deployment plan.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
resource_deployment_plan_external_descriptors => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:resource_deployment_plan_external_descriptors']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
resource_deployment_plan_path
The resource deployment plan path.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
resource_deployment_plan_path => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:resource_deployment_plan_path']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
resource_manager
The resource manager policy assigned to the partition.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
resource_manager => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:resource_manager']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
resource_manager_ref
A resource manager reference from the resource management.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
resource_manager_ref => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:resource_manager_ref']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
root_file_system
The full path to the root of this file subsystem of the partition.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
root_file_system => 'a_value'
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
startup_timeout
The timeout value for a partition’s start and resume operations. If the partition fails to start within the timeout period, it will force a shutdown. <p/> A value of 0
means that the server will wait indefinitely for the operation to complete.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
startup_timeout => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:startup_timeout']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
systemfs_create_on_demand
Specifies whether the file system should be created on-demand when the partition is first started.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
systemfs_create_on_demand => 1,
...
}
Valid values are absent
, 1
, 0
.
Back to overview of wls_domain_partition
systemfs_notes
Optional information that you can include to describe this configuration. WebLogic Server saves this note in the domain’s configuration file (config.xml
) as XML PCDATA. All left angle brackets (<) are converted to the XML entity <
. Carriage returns/line feeds are preserved. Note: If you create or edit a note from the Administration Console, the Administration Console does not preserve carriage returns/line feeds.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
systemfs_notes => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:systemfs_notes']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
systemfs_preserved
Specifies whether the file system should be preserved when the partition is deleted.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
systemfs_preserved => 1,
...
}
Valid values are absent
, 1
, 0
.
Back to overview of wls_domain_partition
systemfs_tags
Return all tags on this Configuration MBean
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
systemfs_tags => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:systemfs_tags']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
tags
Return all tags on this Configuration MBean
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
tags => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:tags']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
timeout
Timeout for applying a resource.
To be sure no Puppet operation, hangs a Puppet daemon, all operations have a timeout. When this timeout expires, Puppet will abort the current operation and signal an error in the Puppet run.
With this parameter, you can specify the length of the timeout. The value is specified in seconds. In this example, the timeout
is set to 600
seconds.
wls_server{'my_server':
...
timeout => 600,
}
The default value for timeout
is 120 seconds.
Back to overview of wls_domain_partition
upload_directory_name
The directory path on the Administration Server where the uploaded applications for this partition are placed.
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
upload_directory_name => 'a_value'
...
}
This is an extended property. Before you can use it add it to the wls_settings
property extra_properties
.
wls_setting{'domain':
...
extra_properties => ['wls_domain_partition:upload_directory_name']
...
}
This help text generated from MBean text of the WebLogic server.
Back to overview of wls_domain_partition
virtual_target
The virtual target for the domain partition
An example on how to use this:
wls_domain_partition {a_wls_domain_partition :
...
virtual_target => ['target_1','target_2']
...
}