Long Term Retention Policies - Create Or Update
Sets a database's long term retention policy.
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/backupLongTermRetentionPolicies/default?api-version=2021-11-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
database
|
path | True |
string |
The name of the database. |
policy
|
path | True |
The policy name. Should always be Default. |
|
resource
|
path | True |
string |
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
server
|
path | True |
string |
The name of the server. |
subscription
|
path | True |
string |
The subscription ID that identifies an Azure subscription. |
api-version
|
query | True |
string |
The API version to use for the request. |
Request Body
Name | Type | Description |
---|---|---|
properties.monthlyRetention |
string |
The monthly retention policy for an LTR backup in an ISO 8601 format. |
properties.weekOfYear |
integer |
The week of year to take the yearly backup in an ISO 8601 format. |
properties.weeklyRetention |
string |
The weekly retention policy for an LTR backup in an ISO 8601 format. |
properties.yearlyRetention |
string |
The yearly retention policy for an LTR backup in an ISO 8601 format. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Successfully set the policy. |
|
202 Accepted |
Accepted |
|
Other Status Codes |
*** Error Responses: ***
|
Examples
Create or update the long term retention policy for the database.
Sample request
PUT https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/backupLongTermRetentionPolicies/default?api-version=2021-11-01
{
"properties": {
"weeklyRetention": "P1M",
"monthlyRetention": "P1Y",
"yearlyRetention": "P5Y",
"weekOfYear": 5
}
}
Sample response
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/resourceGroups/resourceGroup/servers/testserver/databases/testDatabase/backupLongTermRetentionPolicies/default",
"name": "default",
"type": "Microsoft.Sql/resourceGroups/servers/databases/backupLongTermRetentionPolicies",
"properties": {
"weeklyRetention": "P1M",
"monthlyRetention": "P1Y",
"yearlyRetention": "P5Y",
"weekOfYear": 5
}
}
Definitions
Name | Description |
---|---|
Long |
A long term retention policy. |
Long |
The policy name. Should always be Default. |
LongTermRetentionPolicy
A long term retention policy.
Name | Type | Description |
---|---|---|
id |
string |
Resource ID. |
name |
string |
Resource name. |
properties.monthlyRetention |
string |
The monthly retention policy for an LTR backup in an ISO 8601 format. |
properties.weekOfYear |
integer |
The week of year to take the yearly backup in an ISO 8601 format. |
properties.weeklyRetention |
string |
The weekly retention policy for an LTR backup in an ISO 8601 format. |
properties.yearlyRetention |
string |
The yearly retention policy for an LTR backup in an ISO 8601 format. |
type |
string |
Resource type. |
LongTermRetentionPolicyName
The policy name. Should always be Default.
Name | Type | Description |
---|---|---|
default |
string |