Managed Instance Long Term Retention Policies - List By Database
Gets a database's long term retention policy.
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/databases/{databaseName}/backupLongTermRetentionPolicies?api-version=2023-08-01
URI Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
|
database
|
path | True |
string |
The name of the database. |
|
managed
|
path | True |
string |
The name of the managed instance. |
|
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. |
|
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. |
Responses
| Name | Type | Description |
|---|---|---|
| 200 OK |
Successfully got LTR policy for managed database. |
|
| Other Status Codes |
*** Error Responses: ***
|
Examples
Get the long term retention policies for the managed database.
Sample request
Sample response
{
"value": [
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testResourceGroup/providers/Microsoft.Sql/managedInstances/testInstance/databases/testDatabase/backupLongTermRetentionPolicies/default",
"name": "default",
"type": "Microsoft.Sql/resourceGroups/managedInstances/databases/backupLongTermRetentionPolicies",
"properties": {
"weeklyRetention": "P1M",
"monthlyRetention": "P1Y",
"yearlyRetention": "P5Y",
"weekOfYear": 5,
"backupStorageAccessTier": "Archive"
}
}
]
}
Definitions
| Name | Description |
|---|---|
|
Backup |
The BackupStorageAccessTier for the LTR backups |
|
Error |
The resource management error additional info. |
|
Error |
The error detail. |
|
Error |
Error response |
|
Managed |
A long term retention policy. |
|
Managed |
A list of long term retention policies. |
BackupStorageAccessTier
The BackupStorageAccessTier for the LTR backups
| Value | Description |
|---|---|
| Hot | |
| Archive |
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. |
ManagedInstanceLongTermRetentionPolicy
A long term retention policy.
| Name | Type | Description |
|---|---|---|
| id |
string |
Resource ID. |
| name |
string |
Resource name. |
| properties.backupStorageAccessTier |
The BackupStorageAccessTier for the LTR backups |
|
| properties.monthlyRetention |
string |
The monthly retention policy for an LTR backup in an ISO 8601 format. |
| properties.weekOfYear |
integer (int32) |
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. |
ManagedInstanceLongTermRetentionPolicyListResult
A list of long term retention policies.
| Name | Type | Description |
|---|---|---|
| nextLink |
string |
Link to retrieve next page of results. |
| value |
Array of results. |