Replication Links - Create Or Update
Updates the replication link type.
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}?api-version=2024-05-01-preview
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
database
|
path | True |
string |
The name of the database. |
link
|
path | True |
string |
|
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.linkType |
Link type (GEO, NAMED, STANDBY). Update operation does not support NAMED. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Successfully updated the replication link. |
|
202 Accepted |
Update operation is in progress. |
|
Other Status Codes |
*** Error Responses: ***
|
Examples
Updates Replication Link
Sample request
PUT https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/sourcesvr/databases/gamma-db/replicationLinks/00000000-1111-2222-3333-666666666666?api-version=2024-05-01-preview
{
"properties": {
"linkType": "STANDBY"
}
}
Sample response
{
"properties": {
"partnerServer": "testsvr",
"partnerDatabase": "gamma-db",
"partnerDatabaseId": "/subscriptions/00000000-1111-2222-3333-555555555555/resourceGroups/Second-Default/providers/Microsoft.Sql/servers/testsvr/databases/gamma-db",
"partnerLocation": "Japan East",
"role": "Primary",
"partnerRole": "Secondary",
"replicationMode": "ASYNC",
"startTime": "2018-06-21T08:12:43.783Z",
"percentComplete": 100,
"replicationState": "CATCH_UP",
"isTerminationAllowed": true,
"linkType": "STANDBY"
},
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/servers/sourcesvr/databases/gamma-db/replicationLinks/4891ca10-ebd0-47d7-9182-c722651780fb",
"name": "00000000-1111-2222-3333-666666666666"
}
Location: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/japaneast/replicationLinksOperationResults/11111111-1111-1111-1111-111111111111
Definitions
Name | Description |
---|---|
Error |
The resource management error additional info. |
Error |
The error detail. |
Error |
Error response |
Replication |
A replication link. |
Replication |
Link type (GEO, NAMED, STANDBY). Update operation does not support NAMED. |
Replication |
Local replication role. |
Replication |
Replication state (PENDING, SEEDING, CATCHUP, SUSPENDED). |
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. |
ReplicationLink
A replication link.
Name | Type | Description |
---|---|---|
id |
string |
Resource ID. |
name |
string |
Resource name. |
properties.isTerminationAllowed |
boolean |
Whether the user is currently allowed to terminate the link. |
properties.linkType |
Link type (GEO, NAMED, STANDBY). Update operation does not support NAMED. |
|
properties.partnerDatabase |
string |
Resource partner database. |
properties.partnerDatabaseId |
string |
Resource partner database Id. |
properties.partnerLocation |
string |
Resource partner location. |
properties.partnerRole |
Partner replication role. |
|
properties.partnerServer |
string |
Resource partner server. |
properties.percentComplete |
integer |
Seeding completion percentage for the link. |
properties.replicationMode |
string |
Replication mode. |
properties.replicationState |
Replication state (PENDING, SEEDING, CATCHUP, SUSPENDED). |
|
properties.role |
Local replication role. |
|
properties.startTime |
string |
Time at which the link was created. |
type |
string |
Resource type. |
ReplicationLinkType
Link type (GEO, NAMED, STANDBY). Update operation does not support NAMED.
Name | Type | Description |
---|---|---|
GEO |
string |
|
NAMED |
string |
|
STANDBY |
string |
ReplicationRole
Local replication role.
Name | Type | Description |
---|---|---|
Copy |
string |
|
NonReadableSecondary |
string |
|
Primary |
string |
|
Secondary |
string |
|
Source |
string |
ReplicationState
Replication state (PENDING, SEEDING, CATCHUP, SUSPENDED).
Name | Type | Description |
---|---|---|
CATCH_UP |
string |
|
PENDING |
string |
|
SEEDING |
string |
|
SUSPENDED |
string |