Databases - Regenerate Key
Regenerates the RedisEnterprise database's access keys.
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/databases/{databaseName}/regenerateKey?api-version=2024-10-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
cluster
|
path | True |
string |
The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens Regex pattern: |
database
|
path | True |
string |
The name of the Redis Enterprise database. Regex pattern: |
resource
|
path | True |
string |
The name of the resource group. The name is case insensitive. |
subscription
|
path | True |
string |
The ID of the target subscription. |
api-version
|
query | True |
string |
The API version to use for this operation. |
Request Body
Name | Required | Type | Description |
---|---|---|---|
keyType | True |
Which access key to regenerate. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Returns the new access keys for the database |
|
202 Accepted |
The cluster update operation was started. GET the URL in the Azure-AsyncOperation or Location headers to retrieve updated status. Headers
|
|
Other Status Codes |
Error response describing why the operation failed. |
Security
azure_auth
Azure Active Directory OAuth2 Flow.
Type:
oauth2
Flow:
implicit
Authorization URL:
https://login.microsoftonline.com/common/oauth2/authorize
Scopes
Name | Description |
---|---|
user_impersonation | impersonate your user account |
Examples
RedisEnterpriseDatabasesRegenerateKey
Sample request
POST https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/redisEnterprise/cache1/databases/default/regenerateKey?api-version=2024-10-01
{
"keyType": "Primary"
}
Sample response
{
"primaryKey": "<primaryKey>",
"secondaryKey": "<secondaryKey>"
}
Azure-AsyncOperation: https://management.azure.com/subscriptions/subid/providers/Microsoft.Cache/...pathToOperationStatus...
Location: https://management.azure.com/subscriptions/subid/providers/Microsoft.Cache/...pathToOperationResult...
Definitions
Name | Description |
---|---|
Access |
Access keys |
Access |
Which access key to regenerate. |
Error |
The resource management error additional info. |
Error |
The error detail. |
Error |
Error response |
Regenerate |
Regenerate access keys request |
AccessKeys
Access keys
Name | Type | Description |
---|---|---|
primaryKey |
string |
The current primary key that clients can use to authenticate |
secondaryKey |
string |
The current secondary key that clients can use to authenticate |
AccessKeyType
Which access key to regenerate.
Name | Type | Description |
---|---|---|
Primary |
string |
|
Secondary |
string |
ErrorAdditionalInfo
The resource management error additional info.
Name | Type | Description |
---|---|---|
info |
object |
The additional info. |
type |
string |
The additional info type. |
ErrorDetail
The error detail.
Name | Type | Description |
---|---|---|
additionalInfo |
The error additional info. |
|
code |
string |
The error code. |
details |
The error details. |
|
message |
string |
The error message. |
target |
string |
The error target. |
ErrorResponse
Error response
Name | Type | Description |
---|---|---|
error |
The error object. |
RegenerateKeyParameters
Regenerate access keys request
Name | Type | Description |
---|---|---|
keyType |
Which access key to regenerate. |