Show configuration details of fixed-name configuration objects
Purpose
View configuration details of configuration objects that are either provided with a pre-configured name, or are configuration objects for which the name cannot be configured.URI
Use the Eclipse Amlen REST API GET method with the following Eclipse Amlen configuration URI:
http://<admin-endpoint-IP:Port>/ima/v1/configuration/<ObjectType>
where:
- ObjectType
Required.
Specifies the type of configuration object.
You can display the configuration details of the following object types:- AdminEndpoint
- AdminLog
- AdminUserID
- AdminUserPassword
- ClusterMembership
- ConnectionLog
- CRLProfile
- DisableInterfaceMapping
- EnableDiskPersistence
- FIPS
- GranuleSizeBytes
- HighAvailability
- LDAP
- LicensedUsage
- LogLevel
- LogLocation
- MgmtMemPercent
- MQCertificate
- MQConnectivityEnabled
- MQConnectivityLog
- PluginDebugPort
- PluginDebugServer
- PluginMaxHeapSize
- PluginPort
- PluginServer
- PluginVMArgs
- PreSharedKey
- SecurityLog
- ServerName
- ServerUID
- SNMPEnabled
- SSHHost
- Syslog
- TolerateRecoveryInconsistencies
- TopicMonitor
- TraceLevel
- WebUIPort
- WebUIHost
Example
The following example shows a GET method to view configuration details of AdminEndpoint by using cURL:
curl -X GET http://127.0.0.1:9089/ima/v1/configuration/AdminEndpoint
The following example shows a successful example response to the GET method:
{
"Version": "v1",
"AdminEndpoint": {
"Port": 9089,
"Interface": "All",
"SecurityProfile": "AdminDefaultSecProfile",
"ConfigurationPolicies": "AdminDefaultConfigPolicy",
"Description": "Admin Endpoint used for processing administrative and monitoring requests from clients using REST API."
}
}