Crypto Manager Host Add Keys

Crypto Manager Host Add Keys

Add multiple existing keys.

Required privileges: Cryptographer.ManageKeys

Request
URI
POST
https://{vcenter-host}/sdk/vim25/{release}/CryptoManagerHost/{moId}/AddKeys
COPY
Path Parameters
string
moId
Required

The unique identifier for the managed object to which the method attaches; the serialized managed object reference for a request has the form moType/moId, in this case CryptoManagerHost/{moId}.

string
release
Required

The vSphere release schema. The current specification covers vSphere 8.0.2.0 APIs.


Request Body
AddKeysRequestType of type(s) application/json
Required
{
    "keys": [
        {
            "_typeName": "string",
            "keyId": {
                "keyId": "string",
                "providerId": {
                    "id": "string"
                }
            },
            "algorithm": "string",
            "keyData": "string"
        }
    ]
}
keys
Optional

[in] List of cryptographic keys to add.

Authentication
This operation uses the following authentication methods.
Responses
200

the result for each key operation.

Returns Array of CryptoKeyResult of type(s) application/json
[
    {
        "_typeName": "string",
        "keyId": {
            "keyId": "string",
            "providerId": {
                "id": "string"
            }
        },
        "success": false,
        "reason": "string",
        "fault": {
            "faultCause": "MethodFault Object",
            "faultMessage": [
                {
                    "_typeName": "string",
                    "key": "string",
                    "arg": [
                        {
                            "_typeName": "string",
                            "key": "string",
                            "value": {
                                "_typeName": "string"
                            }
                        }
                    ],
                    "message": "string"
                }
            ]
        }
    }
]

500

InvalidState: in case the host is not Crypto Safe

Returns InvalidState of type(s) application/json
This response body class contains all of the following: VimFault
{
    "_typeName": "string",
    "faultCause": "MethodFault Object",
    "faultMessage": [
        {
            "_typeName": "string",
            "key": "string",
            "arg": [
                {
                    "_typeName": "string",
                    "key": "string",
                    "value": {
                        "_typeName": "string"
                    }
                }
            ],
            "message": "string"
        }
    ]
}