ListKeyProvidersKmip
You can use the ListKeyProvidersKmip method to retrieve a list of all existing Key Management Interoperability Protocol (KMIP) key providers. You can filter the list by specifying additional parameters.
Parameters
This method has the following input parameters:
| Name | Description | Type | Default value | Required |
|---|---|---|---|---|
keyProviderIsActive |
Filters returned KMIP key server objects based on whether they are active. Possible values:
If omitted, returned KMIP key providers are not filtered based on whether they are active. |
boolean |
None |
No |
kmipKeyProviderHasServerAssigned |
Filters returned KMIP key providers based on whether they have a KMIP key server assigned. Possible values:
If omitted, returned KMIP key providers are not filtered based on whether they have a KMIP key server assigned. |
boolean |
None |
No |
Return values
This method has the following return values:
Name |
Description |
Type |
kmipKeyProviders |
A list of KMIP key providers that have been created. |
KeyProviderKmip array |
Request example
Requests for this method are similar to the following example:
{
"method": "ListKeyProvidersKmip",
"params": {},
"id": 1
}
Response example
This method returns a response similar to the following example:
{
"id": 1,
"result":
{
"kmipKeyProviders": [
{
"keyProviderID": 15,
"kmipCapabilities": "SSL",
"keyProviderIsActive": true,
"keyServerIDs": [
1
],
"keyProviderName": "KeyProvider1"
}
]
}
}
New since version
11.7