Network Deployment (Distributed operating systems), v8.0 > Reference > Commands (wsadmin scripting)
DynamicSSLConfigSelections command group for the AdminTask object
Use the Jython or Jacl scripting languages to configure security with wsadmin.sh. The commands and parameters in the DynamicSSLConfigSelections group can be used to create, delete, and query dynamic SSL configuration selection objects.
The DynamicSSLConfigSelections command group for the AdminTask object includes the following commands:
deleteDynamicSSLConfigSelection
The deleteDynamicSSLConfigSelection command deletes the dynamic SSL configuration selection from the configuration.
Target object None.
Required parameters
-dynSSLConfigSelectionName
Name that uniquely identifies the dynamic SSL configuration selection. (String, required)
Optional parameters
-scopeName
Unique name that identifies the management scope. (String, optional) Examples
Batch example...
### Jacl
$AdminTask deleteDynamicSSLConfigSelection {-dynSSLConfigSelectionName sampleConfigSelection}### Jython
AdminTask.deleteDynamicSSLConfigSelection(-dynSSLConfigSelectionName sampleConfigSelection)
Interactive example...
### Jacl
$AdminTask deleteDynamicSSLConfigSelection {-interactive}### Jython
AdminTask.deleteDynamicSSLConfigSelection('-interactive')
getDynamicSSLConfigSelection
The getDynamicSSLConfigSelection command obtains information about a particular dynamic SSL configuration selection.
Target object None.
Required parameters
-dynSSLConfigSelectionName
Name that uniquely identifies the dynamic SSL configuration selection. (String, required)
Optional parameters
-scopeName
Unique name that identifies the management scope. (String, optional) Examples
Batch example...
### Jacl
$AdminTask getDynamicSSLConfigSelection {-dynSSLConfigSelectionName sampleConfigSelection}### Jython
AdminTask.getDynamicSSLConfigSelection(-dynSSLConfigSelectionName sampleConfigSelection)
Interactive example...
### Jacl
$AdminTask getDynamicSSLConfigSelection {-interactive}### Jython
AdminTask.getDynamicSSLConfigSelection('-interactive')
listDynamicSSLConfigSelections
The listDynamicSSLConfigSelections command lists the configuration objects name for a dynamic SSL configuration selection.Target object None.
Required parameters None.
Optional parameters
-scopeName
Unique name that identifies the management scope. (String, optional)
-all
Specify the value of this parameter as true to list all dynamic SSL configuration selections. This parameter overrides the scopeName parameter. The default value is false. (String, optional) Example output The command does not return output.
Examples
Batch example...
### Jacl
$AdminTask listDynamicSSLConfigSelections### Jython
AdminTask.listDynamicSSLConfigSelections()
Interactive example...
### Jacl
$AdminTask listDynamicSSLConfigSelections {-interactive}### Jython
AdminTask.listDynamicSSLConfigSelections('-interactive')
Use the wsadmin scripting AdminTask object for scripted administration
Replace an existing personal certificate
Automate SSL configurations using scripting