Managed Instance Keys - Create Or Update
Creates or updates a managed instance key.
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/keys/{keyName}?api-version=2021-11-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
key
|
path | True |
string |
The name of the managed instance key to be operated on (updated or created). |
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 |
---|---|---|---|
properties.serverKeyType | True |
The key type like 'ServiceManaged', 'AzureKeyVault'. |
|
properties.uri |
string |
The URI of the key. If the ServerKeyType is AzureKeyVault, then the URI is required. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Successfully updated the managed instance key. |
|
201 Created |
Successfully created the managed instance key. |
|
202 Accepted |
Accepted |
|
Other Status Codes |
*** Error Responses: ***
|
Examples
Creates or updates a managed instance key
Sample request
PUT https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901?api-version=2021-11-01
{
"properties": {
"serverKeyType": "AzureKeyVault",
"uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901"
}
}
Sample response
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901",
"name": "sqlcrudtest-4645",
"type": "Microsoft.Sql/managedInstances/keys",
"kind": "azurekeyvault",
"properties": {
"thumbprint": "00112233445566778899AABBCCDDEEFFAABBCCDD",
"creationDate": "2020-11-01T00:00:00Z",
"autoRotationEnabled": false
}
}
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/managedInstances/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901",
"name": "sqlcrudtest-4645",
"type": "Microsoft.Sql/managedInstances/keys",
"kind": "azurekeyvault",
"properties": {
"thumbprint": "00112233445566778899AABBCCDDEEFFAABBCCDD",
"creationDate": "2020-11-01T00:00:00Z",
"autoRotationEnabled": false
}
}
Definitions
Name | Description |
---|---|
Managed |
A managed instance key. |
Server |
The key type like 'ServiceManaged', 'AzureKeyVault'. |
ManagedInstanceKey
A managed instance key.
Name | Type | Description |
---|---|---|
id |
string |
Resource ID. |
kind |
string |
Kind of encryption protector. This is metadata used for the Azure portal experience. |
name |
string |
Resource name. |
properties.autoRotationEnabled |
boolean |
Key auto rotation opt-in flag. Either true or false. |
properties.creationDate |
string |
The key creation date. |
properties.serverKeyType |
The key type like 'ServiceManaged', 'AzureKeyVault'. |
|
properties.thumbprint |
string |
Thumbprint of the key. |
properties.uri |
string |
The URI of the key. If the ServerKeyType is AzureKeyVault, then the URI is required. |
type |
string |
Resource type. |
ServerKeyType
The key type like 'ServiceManaged', 'AzureKeyVault'.
Name | Type | Description |
---|---|---|
AzureKeyVault |
string |
|
ServiceManaged |
string |