Server Keys - Create Or Update
サーバー キーを作成または更新します。
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/keys/{keyName}?api-version=2021-11-01
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
key
|
path | True |
string |
操作する (更新または作成される) サーバー キーの名前。 キー名は、'vault_key_version' の形式である必要があります。 たとえば、keyId が の場合、 https://YourVaultName.vault.azure.net/keys/YourKeyName/YourKeyVersionサーバー キー名は次のように書式設定する必要があります: YourVaultName_YourKeyName_YourKeyVersion |
resource
|
path | True |
string |
リソースが含まれているリソース グループの名前。 この値は、Azure リソース マネージャー API またはポータルから取得できます。 |
server
|
path | True |
string |
サーバーの名前。 |
subscription
|
path | True |
string |
Azure サブスクリプションを識別するサブスクリプション ID。 |
api-version
|
query | True |
string |
要求で使用する API のバージョン。 |
要求本文
名前 | 必須 | 型 | 説明 |
---|---|---|---|
properties.serverKeyType | True |
サーバー キーの種類 ("ServiceManaged"、"AzureKeyVault" など)。 |
|
properties.uri |
string |
サーバー キーの URI。 ServerKeyType が AzureKeyVault の場合は、URI が必要です。 AKV URI は、次の形式である必要があります: 'https://YourVaultName.vault.azure.net/keys/YourKeyName/YourKeyVersion' |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
サーバー キーが正常に更新されました。 |
|
201 Created |
サーバー キーが正常に作成されました。 |
|
202 Accepted |
同意 |
|
Other Status Codes |
エラー応答: ***
|
例
Creates or updates a server key
要求のサンプル
PUT https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/keys/someVault_someKey_01234567890123456789012345678901?api-version=2021-11-01
{
"properties": {
"serverKeyType": "AzureKeyVault",
"uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901"
}
}
応答のサンプル
{
"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
}
}
{
"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
}
}
定義
名前 | 説明 |
---|---|
Server |
サーバー キー。 |
Server |
サーバー キーの種類 ("ServiceManaged"、"AzureKeyVault" など)。 |
ServerKey
サーバー キー。
名前 | 型 | 説明 |
---|---|---|
id |
string |
リソースの ID |
kind |
string |
暗号化保護機能の種類。 これは、Azure portal エクスペリエンスに使用されるメタデータです。 |
location |
string |
リソースの場所。 |
name |
string |
リソース名。 |
properties.autoRotationEnabled |
boolean |
キー自動ローテーションオプトイン フラグ。 true または false。 |
properties.creationDate |
string |
サーバー キーの作成日。 |
properties.serverKeyType |
サーバー キーの種類 ("ServiceManaged"、"AzureKeyVault" など)。 |
|
properties.subregion |
string |
サーバー キーのサブ領域。 |
properties.thumbprint |
string |
サーバー キーの拇印。 |
properties.uri |
string |
サーバー キーの URI。 ServerKeyType が AzureKeyVault の場合は、URI が必要です。 AKV URI は、次の形式である必要があります: 'https://YourVaultName.vault.azure.net/keys/YourKeyName/YourKeyVersion' |
type |
string |
リソースの種類。 |
ServerKeyType
サーバー キーの種類 ("ServiceManaged"、"AzureKeyVault" など)。
名前 | 型 | 説明 |
---|---|---|
AzureKeyVault |
string |
|
ServiceManaged |
string |