{ "opencollection": "1.0.0", "info": { "name": "Azure Key Vault Data Plane Certificates Keys API", "version": "7.4" }, "request": { "auth": { "type": "oauth2", "flow": "implicit", "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", "credentials": { "clientId": "{{clientId}}" } } }, "items": [ { "info": { "name": "Keys", "type": "folder" }, "items": [ { "info": { "name": "Azure Key Vault Create Key", "type": "http" }, "http": { "method": "POST", "url": "https://{vaultName}.vault.azure.net/keys/:key-name/create", "params": [ { "name": "key-name", "value": "", "type": "path", "description": "The name of the key." }, { "name": "api-version", "value": "", "type": "query", "description": "The API version to use for this operation." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new key, stores it, then returns key parameters and attributes to the client. If the named key already exists, Azure Key Vault creates a new version of the key. Requires the keys/create permission." }, { "info": { "name": "Azure Key Vault Get Key", "type": "http" }, "http": { "method": "GET", "url": "https://{vaultName}.vault.azure.net/keys/:key-name/:key-version", "params": [ { "name": "key-name", "value": "", "type": "path", "description": "The name of the key." }, { "name": "key-version", "value": "", "type": "path", "description": "The version of the key. This URI fragment is optional. If not specified, the latest version of the key is returned." }, { "name": "api-version", "value": "", "type": "query", "description": "The API version to use for this operation." } ] }, "docs": "Gets the public part of a stored key. The get key operation is applicable to all key types. If the requested key is symmetric, then no key material is released in the response. Requires the keys/get permission." }, { "info": { "name": "Azure Key Vault Update Key", "type": "http" }, "http": { "method": "PATCH", "url": "https://{vaultName}.vault.azure.net/keys/:key-name/:key-version", "params": [ { "name": "key-name", "value": "", "type": "path", "description": "The name of the key." }, { "name": "key-version", "value": "", "type": "path", "description": "The version of the key. This URI fragment is optional. If not specified, the latest version of the key is returned." }, { "name": "api-version", "value": "", "type": "query", "description": "The API version to use for this operation." } ], "body": { "type": "json", "data": "{}" } }, "docs": "The update key operation changes specified attributes of a stored key and can be applied to any key type and key version stored in Azure Key Vault. Requires the keys/update permission." }, { "info": { "name": "Azure Key Vault Delete Key", "type": "http" }, "http": { "method": "DELETE", "url": "https://{vaultName}.vault.azure.net/keys/:key-name", "params": [ { "name": "key-name", "value": "", "type": "path", "description": "The name of the key." }, { "name": "api-version", "value": "", "type": "query", "description": "The API version to use for this operation." } ] }, "docs": "Deletes a key of any type from storage in Azure Key Vault. Requires the keys/delete permission." }, { "info": { "name": "Azure Key Vault List Keys", "type": "http" }, "http": { "method": "GET", "url": "https://{vaultName}.vault.azure.net/keys", "params": [ { "name": "api-version", "value": "", "type": "query", "description": "The API version to use for this operation." }, { "name": "maxresults", "value": "", "type": "query", "description": "Maximum number of results to return in a page. If not specified, the service will return up to 25 results." } ] }, "docs": "Retrieves a list of the keys in the Key Vault as JSON Web Key structures that contain the public part of a stored key. The list operation is applicable to all key types. Requires the keys/list permission." }, { "info": { "name": "Azure Key Vault Encrypt", "type": "http" }, "http": { "method": "POST", "url": "https://{vaultName}.vault.azure.net/keys/:key-name/:key-version/encrypt", "params": [ { "name": "key-name", "value": "", "type": "path", "description": "The name of the key." }, { "name": "key-version", "value": "", "type": "path", "description": "The version of the key. This URI fragment is optional. If not specified, the latest version of the key is returned." }, { "name": "api-version", "value": "", "type": "query", "description": "The API version to use for this operation." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Encrypts an arbitrary sequence of bytes using an encryption key that is stored in a Key Vault. Requires the keys/encrypt permission." }, { "info": { "name": "Azure Key Vault Decrypt", "type": "http" }, "http": { "method": "POST", "url": "https://{vaultName}.vault.azure.net/keys/:key-name/:key-version/decrypt", "params": [ { "name": "key-name", "value": "", "type": "path", "description": "The name of the key." }, { "name": "key-version", "value": "", "type": "path", "description": "The version of the key. This URI fragment is optional. If not specified, the latest version of the key is returned." }, { "name": "api-version", "value": "", "type": "query", "description": "The API version to use for this operation." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Decrypts a single block of encrypted data using the specified encryption key. Requires the keys/decrypt permission." }, { "info": { "name": "Azure Key Vault Sign", "type": "http" }, "http": { "method": "POST", "url": "https://{vaultName}.vault.azure.net/keys/:key-name/:key-version/sign", "params": [ { "name": "key-name", "value": "", "type": "path", "description": "The name of the key." }, { "name": "key-version", "value": "", "type": "path", "description": "The version of the key. This URI fragment is optional. If not specified, the latest version of the key is returned." }, { "name": "api-version", "value": "", "type": "query", "description": "The API version to use for this operation." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a signature from a digest using the specified key. Requires the keys/sign permission." }, { "info": { "name": "Azure Key Vault Verify", "type": "http" }, "http": { "method": "POST", "url": "https://{vaultName}.vault.azure.net/keys/:key-name/:key-version/verify", "params": [ { "name": "key-name", "value": "", "type": "path", "description": "The name of the key." }, { "name": "key-version", "value": "", "type": "path", "description": "The version of the key. This URI fragment is optional. If not specified, the latest version of the key is returned." }, { "name": "api-version", "value": "", "type": "query", "description": "The API version to use for this operation." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Verifies a signature using a specified key. Requires the keys/verify permission." }, { "info": { "name": "Azure Key Vault Wrap Key", "type": "http" }, "http": { "method": "POST", "url": "https://{vaultName}.vault.azure.net/keys/:key-name/:key-version/wrapkey", "params": [ { "name": "key-name", "value": "", "type": "path", "description": "The name of the key." }, { "name": "key-version", "value": "", "type": "path", "description": "The version of the key. This URI fragment is optional. If not specified, the latest version of the key is returned." }, { "name": "api-version", "value": "", "type": "query", "description": "The API version to use for this operation." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Wraps a symmetric key using a specified key. Requires the keys/wrapKey permission." }, { "info": { "name": "Azure Key Vault Unwrap Key", "type": "http" }, "http": { "method": "POST", "url": "https://{vaultName}.vault.azure.net/keys/:key-name/:key-version/unwrapkey", "params": [ { "name": "key-name", "value": "", "type": "path", "description": "The name of the key." }, { "name": "key-version", "value": "", "type": "path", "description": "The version of the key. This URI fragment is optional. If not specified, the latest version of the key is returned." }, { "name": "api-version", "value": "", "type": "query", "description": "The API version to use for this operation." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Unwraps a symmetric key using the specified key that was initially used for wrapping that key. Requires the keys/unwrapKey permission." } ] } ], "bundled": true }