Database Security Alert Policies - List By Database
データベースのセキュリティ アラート ポリシーの一覧を取得します。
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/securityAlertPolicies?api-version=2021-11-01
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
database
|
path | True |
string |
セキュリティ アラート ポリシーが定義されているデータベースの名前。 |
resource
|
path | True |
string |
リソースが含まれているリソース グループの名前。 この値は、Azure リソース マネージャー API またはポータルから取得できます。 |
server
|
path | True |
string |
サーバーの名前。 |
subscription
|
path | True |
string |
Azure サブスクリプションを識別するサブスクリプション ID。 |
api-version
|
query | True |
string |
要求で使用する API のバージョン。 |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
データベース セキュリティ アラート ポリシーが正常に取得されました。 |
|
Other Status Codes |
エラー応答: ***
|
例
Get the database's threat detection policies
要求のサンプル
応答のサンプル
{
"value": [
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-6852/providers/Microsoft.Sql/servers/securityalert-2080/databases/testdb",
"name": "default",
"type": "Microsoft.Sql/servers/databases/securityAlertPolicies",
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-04-03T04:41:33.937Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-04-03T04:41:33.937Z"
},
"properties": {
"state": "Enabled",
"emailAccountAdmins": true,
"emailAddresses": [
"test@consoto.com",
"user@consoto.com"
],
"disabledAlerts": [
"Usage_Anomaly"
],
"retentionDays": 0,
"storageEndpoint": "",
"creationTime": "2020-04-03T04:41:33.937Z"
}
}
]
}
定義
名前 | 説明 |
---|---|
created |
リソースを作成した ID の種類。 |
Database |
データベースのセキュリティ アラート ポリシーの一覧。 |
Database |
データベース セキュリティ アラート ポリシー。 |
Security |
ポリシーの状態を指定します。ポリシーが有効か無効か、またはポリシーがまだ特定のデータベースに適用されていません。 |
system |
リソースの作成と最後の変更に関連するメタデータ。 |
createdByType
リソースを作成した ID の種類。
名前 | 型 | 説明 |
---|---|---|
Application |
string |
|
Key |
string |
|
ManagedIdentity |
string |
|
User |
string |
DatabaseSecurityAlertListResult
データベースのセキュリティ アラート ポリシーの一覧。
名前 | 型 | 説明 |
---|---|---|
nextLink |
string |
結果の次のページを取得するためのリンク。 |
value |
結果の配列。 |
DatabaseSecurityAlertPolicy
データベース セキュリティ アラート ポリシー。
名前 | 型 | 説明 |
---|---|---|
id |
string |
リソースの ID |
name |
string |
リソース名。 |
properties.creationTime |
string |
ポリシーの UTC 作成時刻を指定します。 |
properties.disabledAlerts |
string[] |
無効になっているアラートの配列を指定します。 使用できる値は、Sql_Injection、Sql_Injection_Vulnerability、Access_Anomaly、Data_Exfiltration、Unsafe_Action、Brute_Force |
properties.emailAccountAdmins |
boolean |
アラートがアカウント管理者に送信されることを指定します。 |
properties.emailAddresses |
string[] |
アラートの送信先となる電子メール アドレスの配列を指定します。 |
properties.retentionDays |
integer |
脅威検出監査ログに保持する日数を指定します。 |
properties.state |
ポリシーの状態を指定します。ポリシーが有効か無効か、またはポリシーがまだ特定のデータベースに適用されていません。 |
|
properties.storageAccountAccessKey |
string |
脅威検出監査ストレージ アカウントの識別子キーを指定します。 |
properties.storageEndpoint |
string |
BLOB ストレージ エンドポイント (例: ) を指定します。 https://MyAccount.blob.core.windows.net この BLOB ストレージには、すべての脅威検出監査ログが保持されます。 |
systemData |
SecurityAlertPolicyResource の SystemData。 |
|
type |
string |
リソースの種類。 |
SecurityAlertsPolicyState
ポリシーの状態を指定します。ポリシーが有効か無効か、またはポリシーがまだ特定のデータベースに適用されていません。
名前 | 型 | 説明 |
---|---|---|
Disabled |
string |
|
Enabled |
string |
systemData
リソースの作成と最後の変更に関連するメタデータ。
名前 | 型 | 説明 |
---|---|---|
createdAt |
string |
リソース作成のタイムスタンプ (UTC)。 |
createdBy |
string |
リソースを作成した ID。 |
createdByType |
リソースを作成した ID の種類。 |
|
lastModifiedAt |
string |
リソースの最終変更のタイムスタンプ (UTC) |
lastModifiedBy |
string |
リソースを最後に変更した ID。 |
lastModifiedByType |
リソースを最後に変更した ID の種類。 |