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.
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:
|
boolean | None | No |
kmipKeyProviderHasServerAssigned | Filters returned KMIP key providers based on whether they have a KMIP key server assigned. Possible values:
|
boolean | None | No |
This method has the following return values:
Name | Description | Type |
---|---|---|
kmipKeyProviders | A list of KMIP key providers that have been created. | KeyProviderKmip array |
Requests for this method are similar to the following example:
{ "method": "ListKeyProvidersKmip", "params": {}, "id": 1 }
This method returns a response similar to the following example:
{ "id": 1, "result": { "kmipKeyProviders": [ { "keyProviderID": 15, "kmipCapabilities": "SSL", "keyProviderIsActive": true, "keyServerIDs": [ 1 ], "keyProviderName": "KeyProvider1" } ] } }
11.7