Servers - Create Or Update
Creates or updates a server.
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}?api-version=2021-02-01-preview
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
resource
|
path | True |
|
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 |
|
The name of the server. |
subscription
|
path | True |
|
The subscription ID that identifies an Azure subscription. |
api-version
|
query | True |
|
The API version to use for the request. |
Request Body
Name | Required | Type | Description |
---|---|---|---|
location | True |
|
Resource location. |
identity |
The Azure Active Directory identity of the server. |
||
properties.administratorLogin |
|
Administrator username for the server. Once created it cannot be changed. |
|
properties.administratorLoginPassword |
|
The administrator login password (required for server creation). |
|
properties.administrators |
The Azure Active Directory identity of the server. |
||
properties.federatedClientId |
|
The Client id used for cross tenant CMK scenario |
|
properties.keyId |
|
A CMK URI of the key to use for encryption. |
|
properties.minimalTlsVersion |
|
Minimal TLS version. Allowed values: '1.0', '1.1', '1.2' |
|
properties.primaryUserAssignedIdentityId |
|
The resource id of a user assigned identity to be used by default. |
|
properties.publicNetworkAccess |
Whether or not public endpoint access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled' |
||
properties.restrictOutboundNetworkAccess |
Whether or not to restrict outbound network access for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled' |
||
properties.version |
|
The version of the server. |
|
tags |
|
Resource tags. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Successfully updated the server. |
|
201 Created |
Successfully created the server. |
|
202 Accepted |
Accepted |
|
Other Status Codes |
*** Error Responses: ***
|
Examples
Create server
Sample Request
PUT https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645?api-version=2021-02-01-preview
{
"properties": {
"administratorLogin": "dummylogin",
"administratorLoginPassword": "PLACEHOLDER",
"administrators": {
"principalType": "User",
"login": "bob@contoso.com",
"sid": "00000011-1111-2222-2222-123456789111",
"tenantId": "00000011-1111-2222-2222-123456789111",
"azureADOnlyAuthentication": true
},
"publicNetworkAccess": "Enabled",
"restrictOutboundNetworkAccess": "Enabled"
},
"location": "Japan East"
}
Sample Response
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645",
"name": "sqlcrudtest-4645",
"type": "Microsoft.Sql/servers",
"location": "japaneast",
"kind": "v12.0",
"properties": {
"fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net",
"administratorLogin": "dummylogin",
"version": "12.0",
"state": "Ready",
"publicNetworkAccess": "Enabled",
"restrictOutboundNetworkAccess": "Enabled",
"administrators": {
"principalType": "User",
"login": "bob@contoso.com",
"sid": "00000011-1111-2222-2222-123456789111",
"tenantId": "00000011-1111-2222-2222-123456789111",
"azureADOnlyAuthentication": true
},
"privateEndpointConnections": [
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444",
"properties": {
"provisioningState": "Ready",
"privateEndpoint": {
"id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name"
},
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Auto-approved",
"actionsRequired": "None"
}
}
}
]
}
}
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645",
"name": "sqlcrudtest-4645",
"type": "Microsoft.Sql/servers",
"location": "japaneast",
"kind": "v12.0",
"properties": {
"fullyQualifiedDomainName": "sqlcrudtest-4645.database.windows.net",
"administratorLogin": "dummylogin",
"publicNetworkAccess": "Enabled",
"restrictOutboundNetworkAccess": "Enabled",
"version": "12.0",
"state": "Ready",
"administrators": {
"principalType": "User",
"login": "bob@contoso.com",
"sid": "00000011-1111-2222-2222-123456789111",
"tenantId": "00000011-1111-2222-2222-123456789111",
"azureADOnlyAuthentication": true
},
"privateEndpointConnections": [
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/privateEndpointConnections/private-endpoint-name-00000000-1111-2222-3333-444444444444",
"properties": {
"provisioningState": "Ready",
"privateEndpoint": {
"id": "/subscriptions/55555555-6666-7777-8888-999999999999/resourceGroups/Default-Network/providers/Microsoft.Network/privateEndpoints/private-endpoint-name"
},
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Auto-approved",
"actionsRequired": "None"
}
}
}
]
}
}
Definitions
Administrator |
Type of the sever administrator. |
Identity |
The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. |
Principal |
Principal Type of the sever administrator. |
Private |
Properties of a private endpoint connection. |
Private |
|
Private |
State of the private endpoint connection. |
Private |
The actions required for private link service connection. |
Private |
|
Private |
The private link service connection status. |
Resource |
Azure Active Directory identity configuration for a resource. |
Server |
An Azure SQL Database server. |
Server |
Properties of a active directory administrator. |
Server |
Whether or not public endpoint access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled' |
Server |
A private endpoint connection under a server |
Server |
Whether or not existing server has a workspace created and if it allows connection from workspace |
User |
Azure Active Directory identity configuration for a resource. |
AdministratorType
Type of the sever administrator.
Name | Type | Description |
---|---|---|
ActiveDirectory |
|
IdentityType
The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
Name | Type | Description |
---|---|---|
None |
|
|
SystemAssigned |
|
|
SystemAssigned,UserAssigned |
|
|
UserAssigned |
|
PrincipalType
Principal Type of the sever administrator.
Name | Type | Description |
---|---|---|
Application |
|
|
Group |
|
|
User |
|
PrivateEndpointConnectionProperties
Properties of a private endpoint connection.
Name | Type | Description |
---|---|---|
privateEndpoint |
Private endpoint which the connection belongs to. |
|
privateLinkServiceConnectionState |
Connection state of the private endpoint connection. |
|
provisioningState |
State of the private endpoint connection. |
PrivateEndpointProperty
Name | Type | Description |
---|---|---|
id |
|
Resource id of the private endpoint. |
PrivateEndpointProvisioningState
State of the private endpoint connection.
Name | Type | Description |
---|---|---|
Approving |
|
|
Dropping |
|
|
Failed |
|
|
Ready |
|
|
Rejecting |
|
PrivateLinkServiceConnectionStateActionsRequire
The actions required for private link service connection.
Name | Type | Description |
---|---|---|
None |
|
PrivateLinkServiceConnectionStateProperty
Name | Type | Description |
---|---|---|
actionsRequired |
The actions required for private link service connection. |
|
description |
|
The private link service connection description. |
status |
The private link service connection status. |
PrivateLinkServiceConnectionStateStatus
The private link service connection status.
Name | Type | Description |
---|---|---|
Approved |
|
|
Disconnected |
|
|
Pending |
|
|
Rejected |
|
ResourceIdentity
Azure Active Directory identity configuration for a resource.
Name | Type | Description |
---|---|---|
principalId |
|
The Azure Active Directory principal id. |
tenantId |
|
The Azure Active Directory tenant id. |
type |
The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. |
|
userAssignedIdentities |
|
The resource ids of the user assigned identities to use |
Server
An Azure SQL Database server.
Name | Type | Description |
---|---|---|
id |
|
Resource ID. |
identity |
The Azure Active Directory identity of the server. |
|
kind |
|
Kind of sql server. This is metadata used for the Azure portal experience. |
location |
|
Resource location. |
name |
|
Resource name. |
properties.administratorLogin |
|
Administrator username for the server. Once created it cannot be changed. |
properties.administratorLoginPassword |
|
The administrator login password (required for server creation). |
properties.administrators |
The Azure Active Directory identity of the server. |
|
properties.federatedClientId |
|
The Client id used for cross tenant CMK scenario |
properties.fullyQualifiedDomainName |
|
The fully qualified domain name of the server. |
properties.keyId |
|
A CMK URI of the key to use for encryption. |
properties.minimalTlsVersion |
|
Minimal TLS version. Allowed values: '1.0', '1.1', '1.2' |
properties.primaryUserAssignedIdentityId |
|
The resource id of a user assigned identity to be used by default. |
properties.privateEndpointConnections |
List of private endpoint connections on a server |
|
properties.publicNetworkAccess |
Whether or not public endpoint access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled' |
|
properties.restrictOutboundNetworkAccess |
Whether or not to restrict outbound network access for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled' |
|
properties.state |
|
The state of the server. |
properties.version |
|
The version of the server. |
properties.workspaceFeature |
Whether or not existing server has a workspace created and if it allows connection from workspace |
|
tags |
|
Resource tags. |
type |
|
Resource type. |
ServerExternalAdministrator
Properties of a active directory administrator.
Name | Type | Description |
---|---|---|
administratorType |
Type of the sever administrator. |
|
azureADOnlyAuthentication |
|
Azure Active Directory only Authentication enabled. |
login |
|
Login name of the server administrator. |
principalType |
Principal Type of the sever administrator. |
|
sid |
|
SID (object ID) of the server administrator. |
tenantId |
|
Tenant ID of the administrator. |
ServerNetworkAccessFlag
Whether or not public endpoint access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled'
Name | Type | Description |
---|---|---|
Disabled |
|
|
Enabled |
|
ServerPrivateEndpointConnection
A private endpoint connection under a server
Name | Type | Description |
---|---|---|
id |
|
Resource ID. |
properties |
Private endpoint connection properties |
ServerWorkspaceFeature
Whether or not existing server has a workspace created and if it allows connection from workspace
Name | Type | Description |
---|---|---|
Connected |
|
|
Disconnected |
|
UserIdentity
Azure Active Directory identity configuration for a resource.
Name | Type | Description |
---|---|---|
clientId |
|
The Azure Active Directory client id. |
principalId |
|
The Azure Active Directory principal id. |