Name
Get-JS7JOCSettings
SYNOPSIS
Returns JS7 settings
SYNTAX
Get-JS7JOCSettings [[-ConfigurationType] <String>] [[-ObjectType] <String>] [[-Name] <String>] [<CommonParameters>]
DESCRIPTION
A number of JS7 settings are available - for example from the JOC Cockpit Settings page and from Identity Services.
This cmdlet returns such settings, for example:
* Global Settings
* Identity Service Settings
The following REST Web Service API resources are used:
* /configurations
* /configuration
PARAMETERS
ConfigurationType
-ConfigurationType <String>
Specifies the type of settings that defaults to GLOBALS. Possible values include:
* GLOBALS
* IAM
| Required? | false |
| Position? | 1 |
| Default value | GLOBALS |
| Accept pipeline input? | true (ByPropertyName) |
| Accept wildcard characters? | false |
ObjectType
-ObjectType <String>
Optionally specifies the type of an object depending on the configuration type, for example:
* Configuration Type: GLOBALS
* Configuration Type: IAM
** Object Type: JOC
** Object Type: LDAP
** Object Type: VAULT
| Required? | false |
| Position? | 2 |
| Default value | |
| Accept pipeline input? | true (ByPropertyName) |
| Accept wildcard characters? | false |
Name
-Name <String>
Optionally specifies the name of an object, for example for the configuration type IAM and the object type LDAP the name of the LDAP Identity Service has to be specified.
| Required? | false |
| Position? | 3 |
| Default value | |
| Accept pipeline input? | true (ByPropertyName) |
| Accept wildcard characters? | false |
RELATED LINKS
EXAMPLES
-------------------------- EXAMPLE 1 --------------------------
PS > $settings,$item = Get-JS7JOCSettings
Returns the global JS7 settings as available from the JOC Cockpit Settings page.
-------------------------- EXAMPLE 2 --------------------------
PS > $settings,$item = Get-JS7JOCSettings -ConfigurationType 'IAM' -ObjectType 'LDAP' -Name 'PublicLDAP'
Returns settings for the Identity Service 'PublicLDAP'.