Skip to content

Commit ebebc9e

Browse files
committed
Update Documentation
1 parent d9b1951 commit ebebc9e

18 files changed

+50
-59
lines changed

src/Sql/Sql/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
-->
2020
## Upcoming Release
2121
* Added support for restore of dropped databases on Managed Instances.
22+
* Remove aliases for deprecated Vulnerability Assessment Settings cmdlets
23+
* Deprecate Advanced Threat Detection Settings cmdlets
2224

2325
## Version 1.15.0
2426
* Add support for setting Active Directory Administrator on Managed Instance

src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/UpdateAzureSqlManagedDatabaseVulnerabilityAssessmentSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet
2222
/// Updates the Vulnerability Assessment settings properties for a specific managed database.
2323
/// </summary>
2424
[Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseVulnerabilityAssessmentSetting", SupportsShouldProcess = true, DefaultParameterSetName = UpdateSettingsWithStorageAccountNameParameterSet), OutputType(typeof(ManagedDatabaseVulnerabilityAssessmentSettingsModel))]
25-
public class UpdateAzureSqlManagedDatabaseVulnerabilityAssessmentSetting : UpdateAzureSqlVulnerabilityAssessmentSettingsBase
25+
public class UpdateAzureSqlManagedDatabaseVulnerabilityAssessmentSettings : UpdateAzureSqlVulnerabilityAssessmentSettingsBase
2626
{
2727
/// <summary>
2828
/// Gets or sets the name of the managed instance to use.

src/Sql/Sql/help/Az.Sql.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ Adds a Key Vault key to a SQL server.
3232
### [Add-AzSqlServerTransparentDataEncryptionCertificate](Add-AzSqlServerTransparentDataEncryptionCertificate.md)
3333
Adds a Transparent Data Encryption Certificate for the given SQL Server instance
3434

35-
### [Clear-AzSqlDatabaseAdvancedThreatProtectionSettings](Clear-AzSqlDatabaseAdvancedThreatProtectionSettings.md)
36-
Removes the advanced threat protection settings from a database.
37-
3835
### [Clear-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline](Clear-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline.md)
3936
Clears the vulnerability assessment rule baseline.
4037

src/Sql/Sql/help/Clear-AzSqlDatabaseAdvancedThreatProtectionSettings.md

Lines changed: 23 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml
33
Module Name: Az.Sql
4-
ms.assetid: FCCB768A-A034-44AF-B4B6-2AD3133B08EF
5-
online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/Clear-AzSqlDatabaseAdvancedThreatProtectionSettings
4+
online version:
65
schema: 2.0.0
76
---
87

98
# Clear-AzSqlDatabaseAdvancedThreatProtectionSettings
109

1110
## SYNOPSIS
12-
Removes the advanced threat protection settings from a database.
11+
{{ Fill in the Synopsis }}
1312

1413
## SYNTAX
1514

@@ -20,25 +19,24 @@ Clear-AzSqlDatabaseAdvancedThreatProtectionSettings [-PassThru] [-ServerName] <S
2019
```
2120

2221
## DESCRIPTION
23-
The **Clear-AzSqlDatabaseAdvancedThreatProtectionSettings** cmdlet removes the advanced threat protection settings from an AzureAzure SQL database.
24-
To use this cmdlet, specify the *ResourceGroupName* and *ServerName* parameters to identify the database from which this cmdlet removes the settings.
22+
{{ Fill in the Description }}
2523

2624
## EXAMPLES
2725

28-
### Example 1: Remove a advanced threat protection settings for a database
29-
```
30-
PS C:\>Clear-AzSqlDatabaseAdvancedThreatProtectionSettings -ResourceGroupName "ResourceGroup11" -ServerName "Server01" -DatabaseName "Database01"
26+
### Example 1
27+
```powershell
28+
PS C:\> {{ Add example code here }}
3129
```
3230

33-
This command removes the advanced threat protection settings from a database named Database01 on the server named Server01.
31+
{{ Add example description here }}
3432

3533
## PARAMETERS
3634

3735
### -DatabaseName
38-
Specifies the name of a database where the advanced threat protection settings should be removed.
36+
SQL Database name.
3937

4038
```yaml
41-
Type: System.String
39+
Type: String
4240
Parameter Sets: (All)
4341
Aliases:
4442

@@ -50,10 +48,10 @@ Accept wildcard characters: False
5048
```
5149
5250
### -DefaultProfile
53-
The credentials, account, tenant, and subscription used for communication with azure
51+
The credentials, account, tenant, and subscription used for communication with Azure.
5452
5553
```yaml
56-
Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
54+
Type: IAzureContextContainer
5755
Parameter Sets: (All)
5856
Aliases: AzContext, AzureRmContext, AzureCredential
5957

@@ -65,11 +63,10 @@ Accept wildcard characters: False
6563
```
6664
6765
### -PassThru
68-
Returns an object representing the item with which you are working.
69-
By default, this cmdlet does not generate any output.
66+
{{ Fill PassThru Description }}
7067
7168
```yaml
72-
Type: System.Management.Automation.SwitchParameter
69+
Type: SwitchParameter
7370
Parameter Sets: (All)
7471
Aliases:
7572

@@ -81,10 +78,10 @@ Accept wildcard characters: False
8178
```
8279
8380
### -ResourceGroupName
84-
Specifies the name of the resource group the server belongs.
81+
The name of the resource group.
8582
8683
```yaml
87-
Type: System.String
84+
Type: String
8885
Parameter Sets: (All)
8986
Aliases:
9087

@@ -96,10 +93,10 @@ Accept wildcard characters: False
9693
```
9794
9895
### -ServerName
99-
Specifies the name of a server on which the database runs.
96+
SQL Database server name.
10097
10198
```yaml
102-
Type: System.String
99+
Type: String
103100
Parameter Sets: (All)
104101
Aliases:
105102

@@ -114,7 +111,7 @@ Accept wildcard characters: False
114111
Prompts you for confirmation before running the cmdlet.
115112
116113
```yaml
117-
Type: System.Management.Automation.SwitchParameter
114+
Type: SwitchParameter
118115
Parameter Sets: (All)
119116
Aliases: cf
120117

@@ -126,10 +123,11 @@ Accept wildcard characters: False
126123
```
127124
128125
### -WhatIf
129-
Shows what would happen if the cmdlet runs. The cmdlet is not run.
126+
Shows what would happen if the cmdlet runs.
127+
The cmdlet is not run.
130128
131129
```yaml
132-
Type: System.Management.Automation.SwitchParameter
130+
Type: SwitchParameter
133131
Parameter Sets: (All)
134132
Aliases: wi
135133

@@ -141,20 +139,16 @@ Accept wildcard characters: False
141139
```
142140
143141
### CommonParameters
144-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
142+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
145143
146144
## INPUTS
147145
148146
### System.String
149147
150148
## OUTPUTS
151149
152-
### Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionsettingsModel
150+
### Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel
153151
154152
## NOTES
155153
156154
## RELATED LINKS
157-
158-
[SQL Database Documentation](https://docs.microsoft.com/azure/sql-database/)
159-
160-

src/Sql/Sql/help/Clear-AzSqlServerAdvancedThreatProtectionSettings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Accept wildcard characters: False
127127
```
128128
129129
### CommonParameters
130-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
130+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
131131
132132
## INPUTS
133133

src/Sql/Sql/help/Disable-AzSqlInstanceAdvancedDataSecurity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Accept wildcard characters: False
140140
```
141141
142142
### CommonParameters
143-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
143+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
144144
145145
## INPUTS
146146

src/Sql/Sql/help/Disable-AzSqlServerAdvancedDataSecurity.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ IsEnabled : False
5353
The credentials, account, tenant, and subscription used for communication with Azure.
5454

5555
```yaml
56-
Type: IAzureContextContainer
56+
Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
5757
Parameter Sets: (All)
5858
Aliases: AzContext, AzureRmContext, AzureCredential
5959

@@ -68,7 +68,7 @@ Accept wildcard characters: False
6868
The server object to use with Advanced Data Security policy operation
6969
7070
```yaml
71-
Type: AzureSqlServerModel
71+
Type: Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel
7272
Parameter Sets: (All)
7373
Aliases:
7474

@@ -83,7 +83,7 @@ Accept wildcard characters: False
8383
The name of the resource group.
8484
8585
```yaml
86-
Type: String
86+
Type: System.String
8787
Parameter Sets: (All)
8888
Aliases:
8989

@@ -98,7 +98,7 @@ Accept wildcard characters: False
9898
SQL Database server name.
9999
100100
```yaml
101-
Type: String
101+
Type: System.String
102102
Parameter Sets: (All)
103103
Aliases:
104104

@@ -113,7 +113,7 @@ Accept wildcard characters: False
113113
Prompts you for confirmation before running the cmdlet.
114114
115115
```yaml
116-
Type: SwitchParameter
116+
Type: System.Management.Automation.SwitchParameter
117117
Parameter Sets: (All)
118118
Aliases: cf
119119

@@ -129,7 +129,7 @@ Shows what would happen if the cmdlet runs.
129129
The cmdlet is not run.
130130
131131
```yaml
132-
Type: SwitchParameter
132+
Type: System.Management.Automation.SwitchParameter
133133
Parameter Sets: (All)
134134
Aliases: wi
135135

@@ -141,8 +141,7 @@ Accept wildcard characters: False
141141
```
142142
143143
### CommonParameters
144-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
145-
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
144+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
146145
147146
## INPUTS
148147

src/Sql/Sql/help/Disable-AzSqlServerAdvancedThreatProtection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ IsEnabled : False
4343
## PARAMETERS
4444

4545
### CommonParameters
46-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
46+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
4747

4848
## INPUTS
4949

src/Sql/Sql/help/Enable-AzSqlInstanceAdvancedDataSecurity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Accept wildcard characters: False
186186
```
187187
188188
### CommonParameters
189-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
189+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
190190
191191
## INPUTS
192192

src/Sql/Sql/help/Enable-AzSqlServerAdvancedDataSecurity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Accept wildcard characters: False
186186
```
187187
188188
### CommonParameters
189-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
189+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
190190
191191
## INPUTS
192192

src/Sql/Sql/help/Enable-AzSqlServerAdvancedThreatProtection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ IsEnabled : True
4343
## PARAMETERS
4444

4545
### CommonParameters
46-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
46+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
4747

4848
## INPUTS
4949

src/Sql/Sql/help/Get-AzSqlDatabaseAdvancedThreatProtectionSettings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Accept wildcard characters: False
136136
```
137137
138138
### CommonParameters
139-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
139+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
140140
141141
## INPUTS
142142

src/Sql/Sql/help/Get-AzSqlInstanceAdvancedDataSecurityPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Accept wildcard characters: False
109109
```
110110
111111
### CommonParameters
112-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
112+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
113113
114114
## INPUTS
115115

src/Sql/Sql/help/Get-AzSqlServerAdvancedDataSecurityPolicy.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ IsEnabled : True
5151
The credentials, account, tenant, and subscription used for communication with Azure.
5252

5353
```yaml
54-
Type: IAzureContextContainer
54+
Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
5555
Parameter Sets: (All)
5656
Aliases: AzContext, AzureRmContext, AzureCredential
5757

@@ -66,7 +66,7 @@ Accept wildcard characters: False
6666
The server object to use with Advanced Data Security policy operation
6767
6868
```yaml
69-
Type: AzureSqlServerModel
69+
Type: Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel
7070
Parameter Sets: (All)
7171
Aliases:
7272

@@ -81,7 +81,7 @@ Accept wildcard characters: False
8181
The name of the resource group.
8282
8383
```yaml
84-
Type: String
84+
Type: System.String
8585
Parameter Sets: (All)
8686
Aliases:
8787

@@ -96,7 +96,7 @@ Accept wildcard characters: False
9696
SQL Database server name.
9797
9898
```yaml
99-
Type: String
99+
Type: System.String
100100
Parameter Sets: (All)
101101
Aliases:
102102

@@ -108,8 +108,7 @@ Accept wildcard characters: False
108108
```
109109
110110
### CommonParameters
111-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
112-
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
111+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
113112
114113
## INPUTS
115114

src/Sql/Sql/help/Get-AzSqlServerAdvancedThreatProtectionPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ IsEnabled : True
4343
## PARAMETERS
4444

4545
### CommonParameters
46-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
46+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
4747

4848
## INPUTS
4949

src/Sql/Sql/help/Get-AzSqlServerAdvancedThreatProtectionSettings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Accept wildcard characters: False
119119
```
120120
121121
### CommonParameters
122-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
122+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
123123
124124
## INPUTS
125125

src/Sql/Sql/help/Update-AzSqlDatabaseAdvancedThreatProtectionSettings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ Accept wildcard characters: False
225225
```
226226
227227
### CommonParameters
228-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
228+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
229229
230230
## INPUTS
231231

src/Sql/Sql/help/Update-AzSqlServerAdvancedThreatProtectionSettings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ Accept wildcard characters: False
209209
```
210210
211211
### CommonParameters
212-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
212+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
213213
214214
## INPUTS
215215

0 commit comments

Comments
 (0)