Enabling an OCI Key
Use the post /v1/cckm/oci/keys/{id}/enable
API to enable a disabled OCI key.
Syntax
curl -k '<IP>/api/v1/cckm/oci/keys/{id}/enable' -X POST -H 'Authorization: Bearer AUTHTOKEN' -H 'accept: application/json' --compressed
Here, {id}
is the resource ID of the OCI key on the CipherTrust Manager. Note that the resource id
is different from key_id
on OCI. Run the get /v1/cckm/oci/keys
API to view the resource ID (id
) of the OCI key on the CipherTrust Manager.
Request Parameters
Parameter | Type | Description |
---|---|---|
AUTHTOKEN | string | Authentication token. |
Example Request
curl -k 'https://127.0.0.1/api/v1/cckm/oci/keys/90671f17-28ff-4f93-86dc-ff08983469e7/enable' -X POST -H 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiI3ZjRlNmJkNi0wMzgzLTQ4MGMtYWZmZS0wYTQxNDgzZmVlNmUiLCJzdWIiOiJsb2NhbHxlNjM3NTVjOS01YzRhLTQ0NzUtOWI0Zi0wN2JjNzQxYjQ1MGEiLCJpc3MiOiJreWxvIiwiYWNjIjoia3lsbyIsInByZWZlcnJlZF91c2VybmFtZSI6ImFkbWluIiwiY3VzdCI6eyJkb21haW5faWQiOiIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiLCJncm91cHMiOlsiYWRtaW4iXSwic2lkIjoiODJlZTQ2MzAtNjQwMi00MTQ3LTliNDYtNWE5YzU1OGVjZWU4Iiwiem9uZV9pZCI6IjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCJ9LCJqd3RpZCI6ImI4MThiN2MzLTk5NzItNDU0YS1iMjI0LWQ2NGQwOWVlOGRmNSIsImlhdCI6MTYzNDU0MzE0OSwiZXhwIjoxNjM0NTQzNDQ5fQ.KEXK5uaMecdIQT8QWsIqVn6szCz5VBPetDh8i2ePiLU' -H 'accept: application/json' --compressed
Example Response
{
"application/json": {
"id": "bdf59285-4770-4b35-8d34-121fd30ad754",
"uri": "kylo:kylo:cckm:oci-key:bdf59285-4770-4b35-8d34-ef1fd30ad754",
"account": "kylo:kylo:admin:accounts:kylo",
"createdAt": "2022-02-02T07:31:44.698714Z",
"updatedAt": "2022-02-02T08:39:56.614017257Z",
"vault_id": "a155f599-46af-4380-a080-122e0b47d41c",
"tenancy": "gemaltoproductdev",
"region": "us-ashburn-1",
"key_material_origin": "native",
"refreshed_at": "2022-02-02T07:31:29.089663Z",
"oci_params": {
"compartment_id": "ocid1.tenancy.oc1..awsaaaaadixbawsedrftgyhujikolhb2vg7audpd4d4mcf5zluymff6sq",
"current_key_version": "ocid1.keyversion.oc1.iad.bzqyawsedrftgyhujikolgyg.asuimh5drhaaa.abuwcljsp2tw3awsedrftgyhujikolnqxdsykdz4557rt6bd6av2f3syrriq",
"display_name": "TestKeyForDemo",
"key_id": "ocid1.key.oc1.iad.bzqawsedrftgyhujikolyg.abuwcljs22w3j4awsedrftgyhujikol6c3tic2ndcofkndggg6cji7dolbvuwyhq",
"algorithm": "AES",
"length": 32,
"lifecycle_state": "ENABLING",
"time_created": "2022-02-01T06:44:07.053Z",
"vault_name": "CCKM",
"defined_tags": {},
"freeform_tags": {
"tag-key-1": "tag-value-1",
"tag-key-2": "tag-value-2",
"testVault": "cckm"
},
"protection_mode": "SOFTWARE",
"is_primary": true
}
}
}
Response Codes
Response Code | Description |
---|---|
2xx | Success |
4xx | Client errors |
5xx | Server errors |
Refer to HTTP status codes for details.