Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6205793
[AutoPR sql/resource-manager] Adding new value to VA baseline name (#…
AutorestCI May 31, 2018
bff5610
[AutoPR sql/resource-manager] Adding serverSecurityAlertPolicies.json…
AutorestCI Jun 11, 2018
0c50434
[AutoPR sql/resource-manager] Add BackupShortTermRetentionListResult …
AutorestCI Jun 12, 2018
a393fa9
[AutoPR sql/resource-manager] Fixed inconsistent definitions for SQL …
AutorestCI Jun 13, 2018
0f759c6
Generated from a82909eab07e7a383975701b09d09a5fd0dfb967 (#2751)
AutorestCI Jun 14, 2018
9e863b4
[AutoPR sql/resource-manager] Adding Swagger for POST APIs used to up…
AutorestCI Jun 21, 2018
ba12168
Generated from 7ddb78c4a14cb8b09c405b2ae17b49ff26c23bf5 (#2892)
AutorestCI Jul 18, 2018
9a3f5fd
[AutoPR sql/resource-manager] [DO NOT MERGE] Add DatabaseVulnerabilit…
AutorestCI Jul 27, 2018
39fcd43
Generated from 359416b0d2b799768c78568f0ecc5acab439c956 (#3077)
AutorestCI Aug 6, 2018
833e961
[AutoPR sql/resource-manager] [DO NOT MERGE] Adding VA support for ma…
AutorestCI Aug 9, 2018
8524bd9
Generated from 05549665a5f0b09fc5e7058ffec2c09d91bf3ab0 (#3127)
AutorestCI Aug 16, 2018
e429c66
[AutoPR sql/resource-manager] New Cmdlets for Management.Sql to allow…
AutorestCI Sep 4, 2018
41e6b1c
[AutoPR sql/resource-manager] Remove sensitivityLabels from sql readm…
AutorestCI Sep 10, 2018
6cca24a
Merge branch 'master' into restapi_auto_sql/resource-manager
lmazuel Sep 12, 2018
da75ff6
Generated from ae5e50da51607b6c59745d9d2969c4f6acba0d81 (#3326)
AutorestCI Sep 17, 2018
e240aa1
[AutoPR sql/resource-manager] Swagger Changes to Add DnsZonePartner a…
AutorestCI Sep 18, 2018
28f17e7
[AutoPR sql/resource-manager] Adding VA support for manged instance -…
AutorestCI Oct 4, 2018
5c36a58
Merge branch 'master' into restapi_auto_sql/resource-manager
lmazuel Oct 17, 2018
08184b8
Packaging update of azure-mgmt-sql
azuresdkci Oct 17, 2018
99a20f9
Update version.py
lmazuel Oct 17, 2018
6d3693f
Update HISTORY.rst
lmazuel Oct 18, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Generated from ae5e50da51607b6c59745d9d2969c4f6acba0d81 (#3326)
Add algorithm types to threat detection disabled alerts description

Added Data_Exfiltration and Unsafe_Action as allowed values to disabled alert.
  • Loading branch information
AutorestCI authored Sep 17, 2018
commit da75ff69c1e895d6ddfcb9312ac660e322a7b105
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ class DatabaseSecurityAlertPolicy(ProxyResource):
:type state: str or ~azure.mgmt.sql.models.SecurityAlertPolicyState
:param disabled_alerts: Specifies the semicolon-separated list of alerts
that are disabled, or empty string to disable no alerts. Possible values:
Sql_Injection; Sql_Injection_Vulnerability; Access_Anomaly; Usage_Anomaly.
Sql_Injection; Sql_Injection_Vulnerability; Access_Anomaly;
Data_Exfiltration; Unsafe_Action.
:type disabled_alerts: str
:param email_addresses: Specifies the semicolon-separated list of e-mail
addresses to which the alert is sent.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ class DatabaseSecurityAlertPolicy(ProxyResource):
:type state: str or ~azure.mgmt.sql.models.SecurityAlertPolicyState
:param disabled_alerts: Specifies the semicolon-separated list of alerts
that are disabled, or empty string to disable no alerts. Possible values:
Sql_Injection; Sql_Injection_Vulnerability; Access_Anomaly; Usage_Anomaly.
Sql_Injection; Sql_Injection_Vulnerability; Access_Anomaly;
Data_Exfiltration; Unsafe_Action.
:type disabled_alerts: str
:param email_addresses: Specifies the semicolon-separated list of e-mail
addresses to which the alert is sent.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ServerSecurityAlertPolicy(ProxyResource):
:type state: str or ~azure.mgmt.sql.models.SecurityAlertPolicyState
:param disabled_alerts: Specifies an array of alerts that are disabled.
Allowed values are: Sql_Injection, Sql_Injection_Vulnerability,
Access_Anomaly
Access_Anomaly, Data_Exfiltration, Unsafe_Action
:type disabled_alerts: list[str]
:param email_addresses: Specifies an array of e-mail addresses to which
the alert is sent.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ServerSecurityAlertPolicy(ProxyResource):
:type state: str or ~azure.mgmt.sql.models.SecurityAlertPolicyState
:param disabled_alerts: Specifies an array of alerts that are disabled.
Allowed values are: Sql_Injection, Sql_Injection_Vulnerability,
Access_Anomaly
Access_Anomaly, Data_Exfiltration, Unsafe_Action
:type disabled_alerts: list[str]
:param email_addresses: Specifies an array of e-mail addresses to which
the alert is sent.
Expand Down