Server Keys - Get
Gets a server key.
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/keys/{keyName}?api-version=2021-11-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
key
|
path | True |
string |
The name of the server key to be retrieved. |
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. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Successfully retrieved the specified server key. |
|
Other Status Codes |
*** Error Responses: ***
|
Examples
Get the server key
Sample request
Sample response
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901",
"name": "sqlcrudtest-4645",
"type": "Microsoft.Sql/servers/keys",
"location": "Japan East",
"kind": "azurekeyvault",
"properties": {
"thumbprint": "00112233445566778899AABBCCDDEEFFAABBCCDD",
"creationDate": "2020-11-15T00:00:00Z",
"autoRotationEnabled": false
}
}
Definitions
Name | Description |
---|---|
Server |
A server key. |
Server |
The server key type like 'ServiceManaged', 'AzureKeyVault'. |
ServerKey
A server key.
Name | Type | Description |
---|---|---|
id |
string |
Resource ID. |
kind |
string |
Kind of encryption protector. This is metadata used for the Azure portal experience. |
location |
string |
Resource location. |
name |
string |
Resource name. |
properties.autoRotationEnabled |
boolean |
Key auto rotation opt-in flag. Either true or false. |
properties.creationDate |
string |
The server key creation date. |
properties.serverKeyType |
The server key type like 'ServiceManaged', 'AzureKeyVault'. |
|
properties.subregion |
string |
Subregion of the server key. |
properties.thumbprint |
string |
Thumbprint of the server key. |
properties.uri |
string |
The URI of the server key. If the ServerKeyType is AzureKeyVault, then the URI is required. The AKV URI is required to be in this format: 'https://YourVaultName.vault.azure.net/keys/YourKeyName/YourKeyVersion' |
type |
string |
Resource type. |
ServerKeyType
The server key type like 'ServiceManaged', 'AzureKeyVault'.
Name | Type | Description |
---|---|---|
AzureKeyVault |
string |
|
ServiceManaged |
string |