Redis - Export Data

Export data from the redis cache to blobs in a container.

POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/export?api-version=2023-08-01

URI Parameters

Name In Required Type Description
name
path True

string

The name of the Redis cache.

resourceGroupName
path True

string

The name of the resource group. The name is case insensitive.

subscriptionId
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
container True

string

Container name to export to.

prefix True

string

Prefix to use for exported files.

format

string

File format.

preferred-data-archive-auth-method

string

Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS

storage-subscription-id

string

Subscription id of the storage container for data to be exported using ManagedIdentity.

Responses

Name Type Description
200 OK

Export operation succeeded.

202 Accepted

Export operation successfully enqueued; follow the Location header to poll for final outcome.

204 No Content

Export operation succeeded.

Other Status Codes

ErrorResponse

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

RedisCacheExport

Sample Request

POST https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/redis/cache1/export?api-version=2023-08-01

{
  "format": "RDB",
  "prefix": "datadump1",
  "container": "https://contosostorage.blob.core.window.net/urltoBlobContainer?sasKeyParameters",
  "storage-subscription-id": "storageSubId"
}

Sample Response

location: https://management.azure.com/subscriptions/subid/providers/Microsoft.Cache/...pathToOperationResult...

Definitions

Name Description
ErrorAdditionalInfo

The resource management error additional info.

ErrorDetail

The error detail.

ErrorResponse

Error response

ExportRDBParameters

Parameters for Redis export operation.

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

ErrorAdditionalInfo[]

The error additional info.

code

string

The error code.

details

ErrorDetail[]

The error details.

message

string

The error message.

target

string

The error target.

ErrorResponse

Error response

Name Type Description
error

ErrorDetail

The error object.

ExportRDBParameters

Parameters for Redis export operation.

Name Type Description
container

string

Container name to export to.

format

string

File format.

preferred-data-archive-auth-method

string

Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS

prefix

string

Prefix to use for exported files.

storage-subscription-id

string

Subscription id of the storage container for data to be exported using ManagedIdentity.