Managed Server Dns Aliases - Acquire
Acquires managed server DNS alias from another managed server.
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/dnsAliases/{dnsAliasName}/acquire?api-version=2021-11-01
URI Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
|
dns
|
path | True |
string |
|
|
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. |
Request Body
| Name | Required | Type | Description |
|---|---|---|---|
| oldManagedServerDnsAliasResourceId | True |
string |
The resource ID of the managed server DNS alias that will be acquired to point to this managed server instead. |
Responses
| Name | Type | Description |
|---|---|---|
| 200 OK |
Successfully acquired managed server DNS alias. |
|
| 202 Accepted |
Accepted |
|
| Other Status Codes |
*** Error Responses: ***
|
Examples
Acquire managed server DNS alias.
Sample request
POST https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/new-mi/dnsAliases/dns-alias-mi/acquire?api-version=2021-11-01
{
"oldManagedServerDnsAliasResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/old-mi/dnsAliases/alias1"
}
Sample response
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/new-mi/dnsAliases/alias1",
"name": "alias1",
"type": "Microsoft.Sql/managedInstances/dnsAliases",
"properties": {
"azureDnsRecord": "alias1.abcd1234.database.windows.net"
}
}
Definitions
| Name | Description |
|---|---|
|
Managed |
A managed server DNS alias. |
|
Managed |
A managed server DNS alias acquisition request. |
ManagedServerDnsAlias
A managed server DNS alias.
| Name | Type | Description |
|---|---|---|
| id |
string |
Resource ID. |
| name |
string |
Resource name. |
| properties.azureDnsRecord |
string |
The fully qualified DNS record for managed server alias |
| properties.publicAzureDnsRecord |
string |
The fully qualified public DNS record for managed server alias |
| type |
string |
Resource type. |
ManagedServerDnsAliasAcquisition
A managed server DNS alias acquisition request.
| Name | Type | Description |
|---|---|---|
| oldManagedServerDnsAliasResourceId |
string |
The resource ID of the managed server DNS alias that will be acquired to point to this managed server instead. |