- REST API for Oracle Unified Directory Administration
- Tasks
- Global Index Catalogs Shared Cache Extension
post
/rest/v1/admin
Add, Search, Compare or Delete Global Index Catalogs Shared Cache Extension
Request
Supported Media Types
- application/json
Body ()
Global Index Catalogs Shared Cache Extension that needs to be created
Root Schema : Global Index Catalogs Shared Cache Extension POSTRequest
Type:
Show Source
object
-
assertion:
string
Assertion string for the LDAP compare operation. Note: To be used only while performing LDAP compare operation using POST, i.e., if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:CompareRequest.
-
attributes:
object Global Index Catalogs Shared Cache Extension Properties
-
base:
string
Search Base DN to be used for the LDAP search operation. Note: To be used only while performing LDAP search operation using POST, i.e., if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchRequest. It is also mandatory for such operation
-
controls:
array controls
LDAP controls to be sent to server for the LDAP operation.
-
dn:
string
LDAP DN of the entry to be created or deleted or compared. Note: To be used only while performing LDAP add, delete or compare operations, i.e, if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:AddRequest, urn:ietf:params:rest:schemas:oracle:oud:1.0:DeleteRequest or urn:ietf:params:rest:schemas:oracle:oud:1.0:CompareRequest.It is mandatory for such operations.
-
filter:
string
Search filter for the LDAP search operation. Should follow LDAP search filter syntax. Note: To be used only while performing LDAP search operation using POST request, i.e., if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchRequest.
-
msgType(required):
string
Allowed Values:
[ "urn:ietf:params:rest:schemas:oracle:oud:1.0:AddRequest", "urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchRequest", "urn:ietf:params:rest:schemas:oracle:oud:1.0:DeleteRequest", "urn:ietf:params:rest:schemas:oracle:oud:1.0:CompareRequest" ]
The REST message type -
requiredAttributes:
array requiredAttributes
List of attributes to be fetched for the entry. Note: To be used only while performing LDAP search operation using POST, i.e., if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchRequest.
-
scope:
string
Allowed Values:
[ "base", "sub", "one" ]
Scope for the LDAP search operation. Note: To be used only while performing LDAP search operation using POST, i.e., if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchRequest.
{
"type":"object",
"required":[
"msgType"
],
"properties":{
"msgType":{
"description":"The REST message type",
"type":"string",
"enum":[
"urn:ietf:params:rest:schemas:oracle:oud:1.0:AddRequest",
"urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchRequest",
"urn:ietf:params:rest:schemas:oracle:oud:1.0:DeleteRequest",
"urn:ietf:params:rest:schemas:oracle:oud:1.0:CompareRequest"
]
},
"dn":{
"description":"LDAP DN of the entry to be created or deleted or compared. Note: To be used only while performing LDAP add, delete or compare operations, i.e, if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:AddRequest, urn:ietf:params:rest:schemas:oracle:oud:1.0:DeleteRequest or urn:ietf:params:rest:schemas:oracle:oud:1.0:CompareRequest.It is mandatory for such operations.",
"type":"string"
},
"attributes":{
"$ref":"#/definitions/Global Index Catalogs Shared Cache Extension Properties"
},
"base":{
"description":"Search Base DN to be used for the LDAP search operation. Note: To be used only while performing LDAP search operation using POST, i.e., if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchRequest. It is also mandatory for such operation",
"type":"string"
},
"scope":{
"description":"Scope for the LDAP search operation. Note: To be used only while performing LDAP search operation using POST, i.e., if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchRequest.",
"type":"string",
"enum":[
"base",
"sub",
"one"
]
},
"filter":{
"description":"Search filter for the LDAP search operation. Should follow LDAP search filter syntax. Note: To be used only while performing LDAP search operation using POST request, i.e., if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchRequest.",
"type":"string"
},
"requiredAttributes":{
"description":"List of attributes to be fetched for the entry. Note: To be used only while performing LDAP search operation using POST, i.e., if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchRequest.",
"type":"array",
"items":{
"type":"string"
}
},
"controls":{
"description":"LDAP controls to be sent to server for the LDAP operation.",
"type":"array",
"items":{
"type":"string"
}
},
"assertion":{
"description":"Assertion string for the LDAP compare operation. Note: To be used only while performing LDAP compare operation using POST, i.e., if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:CompareRequest.",
"type":"string"
}
}
}
Nested Schema : Global Index Catalogs Shared Cache Extension Properties
Type:
Show Source
object
-
cn:
string
CN (common name) of the entry
-
ds-cfg-db-cache-percent:
integer(int32)
Default Value:
40
Specifies the percentage of JVM memory to allocate to the database cache. -
ds-cfg-db-cache-size:
string
Default Value:
0 MB
The amount of JVM memory to allocate to the database cache. -
ds-cfg-db-evictor-lru-only:
boolean
Default Value:
true
Indicates whether the database should evict existing data from the cache based on an LRU policy (where the least recently used information will be evicted first). -
ds-cfg-db-evictor-nodes-per-scan:
integer(int32)
Default Value:
10
Specifies the number of Btree nodes that should be evicted from the cache in a single pass if it is determined that it is necessary to free existing data in order to make room for new information. -
ds-cfg-enabled(required):
boolean
Indicates whether the Extension is enabled.
-
ds-cfg-java-class(required):
string
Default Value:
com.sun.dps.server.globalindex.GlobalIndexCatalogsSharedCacheConfigManager
Specifies the fully-qualified name of the Java class that provides the Global Index Catalogs Shared Cache Extension implementation. -
objectclass(required):
array objectclass
Objectclass(es) which this entry belongs to.
{
"type":"object",
"required":[
"objectclass",
"ds-cfg-java-class",
"ds-cfg-enabled"
],
"properties":{
"objectclass":{
"type":"array",
"description":"Objectclass(es) which this entry belongs to.",
"items":{
"type":"string"
}
},
"cn":{
"type":"string",
"description":"CN (common name) of the entry"
},
"ds-cfg-java-class":{
"description":"Specifies the fully-qualified name of the Java class that provides the Global Index Catalogs Shared Cache Extension implementation. ",
"readOnly":false,
"default":"com.sun.dps.server.globalindex.GlobalIndexCatalogsSharedCacheConfigManager",
"type":"string"
},
"ds-cfg-db-cache-size":{
"description":"The amount of JVM memory to allocate to the database cache. ",
"readOnly":false,
"default":"0 MB",
"type":"string"
},
"ds-cfg-db-evictor-nodes-per-scan":{
"description":"Specifies the number of Btree nodes that should be evicted from the cache in a single pass if it is determined that it is necessary to free existing data in order to make room for new information. ",
"readOnly":false,
"default":"10",
"type":"integer",
"format":"int32"
},
"ds-cfg-enabled":{
"description":"Indicates whether the Extension is enabled. ",
"readOnly":false,
"type":"boolean"
},
"ds-cfg-db-cache-percent":{
"description":"Specifies the percentage of JVM memory to allocate to the database cache. ",
"readOnly":false,
"default":"40",
"type":"integer",
"format":"int32"
},
"ds-cfg-db-evictor-lru-only":{
"description":"Indicates whether the database should evict existing data from the cache based on an LRU policy (where the least recently used information will be evicted first). ",
"readOnly":false,
"default":true,
"type":"boolean"
}
}
}
Nested Schema : controls
Type:
array
LDAP controls to be sent to server for the LDAP operation.
Show Source
{
"description":"LDAP controls to be sent to server for the LDAP operation.",
"type":"array",
"items":{
"type":"string"
}
}
Nested Schema : requiredAttributes
Type:
array
List of attributes to be fetched for the entry. Note: To be used only while performing LDAP search operation using POST, i.e., if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchRequest.
Show Source
{
"description":"List of attributes to be fetched for the entry. Note: To be used only while performing LDAP search operation using POST, i.e., if the msgType is urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchRequest.",
"type":"array",
"items":{
"type":"string"
}
}
Nested Schema : objectclass
Type:
array
Objectclass(es) which this entry belongs to.
Show Source
{
"type":"array",
"description":"Objectclass(es) which this entry belongs to.",
"items":{
"type":"string"
}
}
Response
Supported Media Types
- application/json
200 Response
OK
Body ()
Root Schema : Global Index Catalogs Shared Cache Extension SuccessResponse
Type:
Show Source
object
-
compareResult:
boolean
Indicates the result of LDAP compare operation.
-
msgType(required):
string
Allowed Values:
[ "urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchResponse", "urn:ietf:params:rest:schemas:oracle:oud:1.0:DeleteResponse", "urn:ietf:params:rest:schemas:oracle:oud:1.0:CompareResponse" ]
The REST message type -
searchResultEntries(required):
array searchResultEntries
Number of search result entries returned after the LDAP operation.
-
totalResults(required):
integer(int32)
Specifies the number of entries created, and returned.
{
"type":"object",
"required":[
"msgType",
"totalResults",
"searchResultEntries"
],
"properties":{
"msgType":{
"description":"The REST message type",
"type":"string",
"enum":[
"urn:ietf:params:rest:schemas:oracle:oud:1.0:SearchResponse",
"urn:ietf:params:rest:schemas:oracle:oud:1.0:DeleteResponse",
"urn:ietf:params:rest:schemas:oracle:oud:1.0:CompareResponse"
]
},
"totalResults":{
"type":"integer",
"format":"int32",
"description":"Specifies the number of entries created, and returned."
},
"searchResultEntries":{
"type":"array",
"description":"Number of search result entries returned after the LDAP operation.",
"items":{
"$ref":"#/definitions/Global Index Catalogs Shared Cache Extension SearchResultEntry"
}
},
"compareResult":{
"description":"Indicates the result of LDAP compare operation.",
"type":"boolean"
}
}
}
Nested Schema : searchResultEntries
Type:
array
Number of search result entries returned after the LDAP operation.
Show Source
{
"type":"array",
"description":"Number of search result entries returned after the LDAP operation.",
"items":{
"$ref":"#/definitions/Global Index Catalogs Shared Cache Extension SearchResultEntry"
}
}
Nested Schema : Global Index Catalogs Shared Cache Extension SearchResultEntry
Type:
Show Source
object
-
attributes(required):
object Global Index Catalogs Shared Cache Extension Properties
-
dn(required):
string
LDAP DN of the entry to be created
{
"type":"object",
"required":[
"dn",
"attributes"
],
"properties":{
"dn":{
"description":"LDAP DN of the entry to be created",
"type":"string"
},
"attributes":{
"$ref":"#/definitions/Global Index Catalogs Shared Cache Extension Properties"
}
}
}
Nested Schema : Global Index Catalogs Shared Cache Extension Properties
Type:
Show Source
object
-
cn:
string
CN (common name) of the entry
-
ds-cfg-db-cache-percent:
integer(int32)
Default Value:
40
Specifies the percentage of JVM memory to allocate to the database cache. -
ds-cfg-db-cache-size:
string
Default Value:
0 MB
The amount of JVM memory to allocate to the database cache. -
ds-cfg-db-evictor-lru-only:
boolean
Default Value:
true
Indicates whether the database should evict existing data from the cache based on an LRU policy (where the least recently used information will be evicted first). -
ds-cfg-db-evictor-nodes-per-scan:
integer(int32)
Default Value:
10
Specifies the number of Btree nodes that should be evicted from the cache in a single pass if it is determined that it is necessary to free existing data in order to make room for new information. -
ds-cfg-enabled(required):
boolean
Indicates whether the Extension is enabled.
-
ds-cfg-java-class(required):
string
Default Value:
com.sun.dps.server.globalindex.GlobalIndexCatalogsSharedCacheConfigManager
Specifies the fully-qualified name of the Java class that provides the Global Index Catalogs Shared Cache Extension implementation. -
objectclass(required):
array objectclass
Objectclass(es) which this entry belongs to.
{
"type":"object",
"required":[
"objectclass",
"ds-cfg-java-class",
"ds-cfg-enabled"
],
"properties":{
"objectclass":{
"type":"array",
"description":"Objectclass(es) which this entry belongs to.",
"items":{
"type":"string"
}
},
"cn":{
"type":"string",
"description":"CN (common name) of the entry"
},
"ds-cfg-java-class":{
"description":"Specifies the fully-qualified name of the Java class that provides the Global Index Catalogs Shared Cache Extension implementation. ",
"readOnly":false,
"default":"com.sun.dps.server.globalindex.GlobalIndexCatalogsSharedCacheConfigManager",
"type":"string"
},
"ds-cfg-db-cache-size":{
"description":"The amount of JVM memory to allocate to the database cache. ",
"readOnly":false,
"default":"0 MB",
"type":"string"
},
"ds-cfg-db-evictor-nodes-per-scan":{
"description":"Specifies the number of Btree nodes that should be evicted from the cache in a single pass if it is determined that it is necessary to free existing data in order to make room for new information. ",
"readOnly":false,
"default":"10",
"type":"integer",
"format":"int32"
},
"ds-cfg-enabled":{
"description":"Indicates whether the Extension is enabled. ",
"readOnly":false,
"type":"boolean"
},
"ds-cfg-db-cache-percent":{
"description":"Specifies the percentage of JVM memory to allocate to the database cache. ",
"readOnly":false,
"default":"40",
"type":"integer",
"format":"int32"
},
"ds-cfg-db-evictor-lru-only":{
"description":"Indicates whether the database should evict existing data from the cache based on an LRU policy (where the least recently used information will be evicted first). ",
"readOnly":false,
"default":true,
"type":"boolean"
}
}
}
Nested Schema : objectclass
Type:
array
Objectclass(es) which this entry belongs to.
Show Source
{
"type":"array",
"description":"Objectclass(es) which this entry belongs to.",
"items":{
"type":"string"
}
}
201 Response
Created
Body ()
Root Schema : Global Index Catalogs Shared Cache Extension ADDResponse
Type:
Show Source
object
-
msgType(required):
string
Default Value:
urn:ietf:params:rest:schemas:oracle:oud:1.0:AddResponse
The REST message type -
searchResultEntries(required):
array searchResultEntries
-
totalResults(required):
integer(int32)
Specifies the number of entries created, and returned.
{
"type":"object",
"required":[
"msgType",
"totalResults",
"searchResultEntries"
],
"properties":{
"msgType":{
"description":"The REST message type",
"default":"urn:ietf:params:rest:schemas:oracle:oud:1.0:AddResponse",
"type":"string"
},
"totalResults":{
"type":"integer",
"format":"int32",
"description":"Specifies the number of entries created, and returned."
},
"searchResultEntries":{
"type":"array",
"items":{
"$ref":"#/definitions/Global Index Catalogs Shared Cache Extension SearchResultEntry"
}
}
}
}
Nested Schema : searchResultEntries
Type:
Show Source
array
{
"type":"array",
"items":{
"$ref":"#/definitions/Global Index Catalogs Shared Cache Extension SearchResultEntry"
}
}
Nested Schema : Global Index Catalogs Shared Cache Extension SearchResultEntry
Type:
Show Source
object
-
attributes(required):
object Global Index Catalogs Shared Cache Extension Properties
-
dn(required):
string
LDAP DN of the entry to be created
{
"type":"object",
"required":[
"dn",
"attributes"
],
"properties":{
"dn":{
"description":"LDAP DN of the entry to be created",
"type":"string"
},
"attributes":{
"$ref":"#/definitions/Global Index Catalogs Shared Cache Extension Properties"
}
}
}
Nested Schema : Global Index Catalogs Shared Cache Extension Properties
Type:
Show Source
object
-
cn:
string
CN (common name) of the entry
-
ds-cfg-db-cache-percent:
integer(int32)
Default Value:
40
Specifies the percentage of JVM memory to allocate to the database cache. -
ds-cfg-db-cache-size:
string
Default Value:
0 MB
The amount of JVM memory to allocate to the database cache. -
ds-cfg-db-evictor-lru-only:
boolean
Default Value:
true
Indicates whether the database should evict existing data from the cache based on an LRU policy (where the least recently used information will be evicted first). -
ds-cfg-db-evictor-nodes-per-scan:
integer(int32)
Default Value:
10
Specifies the number of Btree nodes that should be evicted from the cache in a single pass if it is determined that it is necessary to free existing data in order to make room for new information. -
ds-cfg-enabled(required):
boolean
Indicates whether the Extension is enabled.
-
ds-cfg-java-class(required):
string
Default Value:
com.sun.dps.server.globalindex.GlobalIndexCatalogsSharedCacheConfigManager
Specifies the fully-qualified name of the Java class that provides the Global Index Catalogs Shared Cache Extension implementation. -
objectclass(required):
array objectclass
Objectclass(es) which this entry belongs to.
{
"type":"object",
"required":[
"objectclass",
"ds-cfg-java-class",
"ds-cfg-enabled"
],
"properties":{
"objectclass":{
"type":"array",
"description":"Objectclass(es) which this entry belongs to.",
"items":{
"type":"string"
}
},
"cn":{
"type":"string",
"description":"CN (common name) of the entry"
},
"ds-cfg-java-class":{
"description":"Specifies the fully-qualified name of the Java class that provides the Global Index Catalogs Shared Cache Extension implementation. ",
"readOnly":false,
"default":"com.sun.dps.server.globalindex.GlobalIndexCatalogsSharedCacheConfigManager",
"type":"string"
},
"ds-cfg-db-cache-size":{
"description":"The amount of JVM memory to allocate to the database cache. ",
"readOnly":false,
"default":"0 MB",
"type":"string"
},
"ds-cfg-db-evictor-nodes-per-scan":{
"description":"Specifies the number of Btree nodes that should be evicted from the cache in a single pass if it is determined that it is necessary to free existing data in order to make room for new information. ",
"readOnly":false,
"default":"10",
"type":"integer",
"format":"int32"
},
"ds-cfg-enabled":{
"description":"Indicates whether the Extension is enabled. ",
"readOnly":false,
"type":"boolean"
},
"ds-cfg-db-cache-percent":{
"description":"Specifies the percentage of JVM memory to allocate to the database cache. ",
"readOnly":false,
"default":"40",
"type":"integer",
"format":"int32"
},
"ds-cfg-db-evictor-lru-only":{
"description":"Indicates whether the database should evict existing data from the cache based on an LRU policy (where the least recently used information will be evicted first). ",
"readOnly":false,
"default":true,
"type":"boolean"
}
}
}
Nested Schema : objectclass
Type:
array
Objectclass(es) which this entry belongs to.
Show Source
{
"type":"array",
"description":"Objectclass(es) which this entry belongs to.",
"items":{
"type":"string"
}
}
204 Response
No content
406 Response
Not Acceptable
Body ()
Root Schema : ErrorResponse
Type:
Show Source
object
-
ldapErrorCode:
integer(int32)
Specifies the LDAP error code returned for the operation.
-
message(required):
string
Error message returned returned for the operation.
-
msgType(required):
string
Default Value:
urn:ietf:params:rest:schemas:oracle:oud:1.0:ErrorResponse
The REST message type
{
"type":"object",
"required":[
"msgType",
"message"
],
"properties":{
"msgType":{
"description":"The REST message type",
"default":"urn:ietf:params:rest:schemas:oracle:oud:1.0:ErrorResponse",
"type":"string"
},
"message":{
"description":"Error message returned returned for the operation.",
"type":"string"
},
"ldapErrorCode":{
"type":"integer",
"format":"int32",
"description":"Specifies the LDAP error code returned for the operation."
}
}
}