Skip to content

Commit 2927c85

Browse files
committed
Merge branch 'preview' into Update-AuthorizationPackage-second
2 parents fc6a683 + ddf243d commit 2927c85

16 files changed

+130
-137
lines changed

build.proj

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
<Scope Condition=" $(Scope) == '' " >all</Scope>
5050
<NetCore Condition=" $(NetCore) == '' " >false</NetCore>
5151
<SkipHelp Condition =" '$(SkipHelp)' == '' ">false</SkipHelp>
52+
<BuildTasksPath>$(LibraryToolsFolder)\BuildPackagesTask\Microsoft.Azure.Build.Tasks\bin\$(Configuration)</BuildTasksPath>
5253
</PropertyGroup>
5354
<ItemGroup>
5455
<CmdletSolutionsToBuild Include=".\src\Storage\Storage.sln;.\src\ResourceManager\**\*.sln;.\src\ServiceManagement\ServiceManagement.sln;"
@@ -66,11 +67,11 @@
6667
</ItemGroup>
6768

6869
<!-- Tasks -->
69-
<UsingTask TaskName="ValidateStrongNameSignatureTask" AssemblyFile="$(LibraryToolsFolder)\Microsoft.Azure.Build.Tasks.dll" />
70-
<UsingTask TaskName="FilterOutAutoRestLibraries" AssemblyFile="$(LibraryToolsFolder)\Microsoft.Azure.Build.Tasks.dll" />
71-
<UsingTask TaskName="DebugTask" AssemblyFile="$(LibraryToolsFolder)\Microsoft.Azure.Build.Tasks.dll" />
72-
<UsingTask TaskName="VerifyAuthenticodeSignatureTask" AssemblyFile="$(LibraryToolsFolder)\Microsoft.Azure.Build.Tasks.dll" />
73-
<UsingTask TaskName="SmartTestingTask" AssemblyFile="$(LibraryToolsFolder)\BuildPackagesTask\Microsoft.Azure.Build.Tasks\bin\Debug\Microsoft.Azure.Build.Tasks.dll" />
70+
<UsingTask TaskName="ValidateStrongNameSignatureTask" AssemblyFile="$(BuildTasksPath)\Microsoft.Azure.Build.Tasks.dll" />
71+
<UsingTask TaskName="FilterOutAutoRestLibraries" AssemblyFile="$(BuildTasksPath)\Microsoft.Azure.Build.Tasks.dll" />
72+
<UsingTask TaskName="DebugTask" AssemblyFile="$(BuildTasksPath)\Microsoft.Azure.Build.Tasks.dll" />
73+
<UsingTask TaskName="VerifyAuthenticodeSignatureTask" AssemblyFile="$(BuildTasksPath)\Microsoft.Azure.Build.Tasks.dll" />
74+
<UsingTask TaskName="SmartTestingTask" AssemblyFile="$(BuildTasksPath)\Microsoft.Azure.Build.Tasks.dll" />
7475
<UsingTask TaskName="SetEnvVar" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll" >
7576
<ParameterGroup>
7677
<EnvName ParameterType="System.String" Required="true" />
@@ -307,7 +308,7 @@
307308
<Target Name="BuildMsBuildTask" DependsOnTargets="RestoreNugetPackages">
308309
<MSBuild Projects="@(LocalBuildTasks)"
309310
Targets="Build"
310-
Properties="Configuration=Debug;Platform=Any CPU" />
311+
Properties="Configuration=$(Configuration);Platform=Any CPU" />
311312
</Target>
312313

313314
<Target Name="CodeSignBinaries" DependsOnTargets="RestoreNugetPackages;BuildMsBuildTask">

src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/GetAzureSqlDatabaseAuditingPolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet
2222
/// Returns the auditing policy of a specific database.
2323
/// </summary>
2424
[Cmdlet(VerbsCommon.Get, "AzureRmSqlDatabaseAuditingPolicy", SupportsShouldProcess = true), OutputType(typeof (AuditingPolicyModel))]
25-
[Obsolete("Get-AzureRmSqlDatabaseAuditingPolicy is obsolete. It will be removed in a future release. Please use the Get-AzureSqlDatabaseAuditing cmdlet instead.", false)]
25+
[Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Get-AzureRmSqlDatabaseAuditing' command to get Blob auditing settings.", false)]
2626
public class GetAzureSqlDatabaseAuditingPolicy : SqlDatabaseAuditingCmdletBase
2727
{
2828
/// <summary>

src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/GetAzureSqlServerAuditingPolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet
2323
/// </summary>
2424
[Cmdlet(VerbsCommon.Get, "AzureRmSqlServerAuditingPolicy", SupportsShouldProcess = true), OutputType(typeof (AuditingPolicyModel))]
2525
[Alias("Get-AzureRmSqlDatabaseServerAuditingPolicy")]
26-
[Obsolete("Get-AzureRmSqlServerAuditingPolicy is obsolete. It will be removed in a future release. Please use the Get-AzureSqlServerAuditing cmdlet instead.", false)]
26+
[Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Get-AzureRmSqlServerAuditing' command to get Blob auditing settings.", false)]
2727
public class GetAzureSqlServerAuditingPolicy : SqlDatabaseServerAuditingCmdletBase
2828
{
2929
/// <summary>

src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/RemoveSqlDatabaseAuditing.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet
2222
/// Disables auditing on a specific database.
2323
/// </summary>
2424
[Cmdlet(VerbsCommon.Remove, "AzureRmSqlDatabaseAuditing", SupportsShouldProcess = true), OutputType(typeof(AuditingPolicyModel))]
25-
[Obsolete("Remove-AzureRmSqlDatabaseAuditing is obsolete. It will be removed in a future release. Please use the Set-AzureSqlDatabaseAuditing cmdlet instead.", false)]
25+
[Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzureRmSqlDatabaseAuditing' command to configure Blob auditing.", false)]
2626
public class RemoveSqlDatabaseAuditing : SqlDatabaseAuditingCmdletBase
2727
{
2828
/// <summary>

src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/RemoveSqlServerAuditing.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet
2323
/// </summary>
2424
[Cmdlet(VerbsCommon.Remove, "AzureRmSqlServerAuditing", SupportsShouldProcess = true), OutputType(typeof(AuditingPolicyModel))]
2525
[Alias("Remove-AzureRmSqlDatabaseServerAuditing")]
26-
[Obsolete("Remove-AzureRmSqlServerAuditing is obsolete. It will be removed in a future release. Please use the Set-AzureSqlServerAuditing cmdlet instead.", false)]
26+
[Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzureRmSqlServerAuditing' command to configure Blob auditing.", false)]
2727
public class RemoveSqlServerAuditing : SqlDatabaseServerAuditingCmdletBase
2828
{
2929
/// <summary>

src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlDatabaseAuditingPolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet
2525
/// Sets the auditing policy properties for a specific database.
2626
/// </summary>
2727
[Cmdlet(VerbsCommon.Set, "AzureRmSqlDatabaseAuditingPolicy", SupportsShouldProcess = true), OutputType(typeof(AuditingPolicyModel))]
28-
[Obsolete("Set-AzureRmSqlDatabaseAuditingPolicy is obsolete. It will be removed in a future release. Please use the Set-AzureSqlDatabaseAuditing cmdlet instead.", false)]
28+
[Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzureRmSqlDatabaseAuditing' command to configure Blob auditing.", false)]
2929
public class SetAzureSqlDatabaseAuditingPolicy : SqlDatabaseAuditingCmdletBase
3030
{
3131
/// <summary>

src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlServerAuditingPolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet
2626
/// </summary>
2727
[Cmdlet(VerbsCommon.Set, "AzureRmSqlServerAuditingPolicy", SupportsShouldProcess = true), OutputType(typeof(AuditingPolicyModel))]
2828
[Alias("Set-AzureRmSqlDatabaseServerAuditingPolicy")]
29-
[Obsolete("Set-AzureRmSqlServerAuditingPolicy is obsolete. It will be removed in a future release. Please use the Set-AzureSqlDatabaseAuditing cmdlet instead.", false)]
29+
[Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzureRmSqlServerAuditing' command to configure Blob auditing.", false)]
3030
public class SetAzureSqlServerAuditingPolicy : SqlDatabaseServerAuditingCmdletBase
3131
{
3232
/// <summary>

src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/UseAzureSqlServerAuditingPolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet
2323
/// </summary>
2424
[Cmdlet(VerbsOther.Use, "AzureRmSqlServerAuditingPolicy"), OutputType(typeof(AuditingPolicyModel))]
2525
[Alias("Use-AzureRmSqlDatabaseServerAuditingPolicy")]
26-
[Obsolete("Use-AzureRmSqlServerAuditingPolicy is obsolete. It will be removed in a future release. Please use the Set-AzureSqlDatabaseAuditing cmdlet instead.", false)]
26+
[Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzureRmSqlDatabaseAuditing' command to configure Blob auditing.", false)]
2727
public class UseAzureSqlServerAuditingPolicy : SqlDatabaseAuditingCmdletBase
2828
{
2929
/// <summary>

src/ResourceManager/Sql/Commands.Sql/help/Set-AzureRmSqlDatabaseAuditing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The set of the audit action groups
6767
Type: AuditActionGroups[]
6868
Parameter Sets: (All)
6969
Aliases:
70-
Accepted values: BATCH_STARTED_GROUP, BATCH_COMPLETED_GROUP, APPLICATION_ROLE_CHANGE_PASSWORD_GROUP, AUDIT_CHANGE_GROUP, BACKUP_RESTORE_GROUP, DATABASE_LOGOUT_GROUP, DATABASE_OBJECT_CHANGE_GROUP, DATABASE_OBJECT_OWNERSHIP_CHANGE_GROUP, DATABASE_OBJECT_PERMISSION_CHANGE_GROUP, DATABASE_OPERATION_GROUP, DATABASE_PERMISSION_CHANGE_GROUP, DATABASE_PRINCIPAL_CHANGE_GROUP, DATABASE_PRINCIPAL_IMPERSONATION_GROUP, DATABASE_ROLE_MEMBER_CHANGE_GROUP, FAILED_DATABASE_AUTHENTICATION_GROUP, SCHEMA_OBJECT_ACCESS_GROUP, SCHEMA_OBJECT_CHANGE_GROUP, SCHEMA_OBJECT_OWNERSHIP_CHANGE_GROUP, SCHEMA_OBJECT_PERMISSION_CHANGE_GROUP, SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP, USER_CHANGE_PASSWORD_GROUP
70+
Accepted values: BATCH_STARTED_GROUP, BATCH_COMPLETED_GROUP, APPLICATION_ROLE_CHANGE_PASSWORD_GROUP, BACKUP_RESTORE_GROUP, DATABASE_LOGOUT_GROUP, DATABASE_OBJECT_CHANGE_GROUP, DATABASE_OBJECT_OWNERSHIP_CHANGE_GROUP, DATABASE_OBJECT_PERMISSION_CHANGE_GROUP, DATABASE_OPERATION_GROUP, DATABASE_PERMISSION_CHANGE_GROUP, DATABASE_PRINCIPAL_CHANGE_GROUP, DATABASE_PRINCIPAL_IMPERSONATION_GROUP, DATABASE_ROLE_MEMBER_CHANGE_GROUP, FAILED_DATABASE_AUTHENTICATION_GROUP, SCHEMA_OBJECT_ACCESS_GROUP, SCHEMA_OBJECT_CHANGE_GROUP, SCHEMA_OBJECT_OWNERSHIP_CHANGE_GROUP, SCHEMA_OBJECT_PERMISSION_CHANGE_GROUP, SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP, USER_CHANGE_PASSWORD_GROUP
7171

7272
Required: False
7373
Position: Named

src/ResourceManager/Sql/Commands.Sql/help/Set-AzureRmSqlDatabaseAuditingPolicy.md

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ The command does not change the storage settings.
6868
## PARAMETERS
6969

7070
### -AuditAction
71+
Specify one or more audit actions.
72+
This parameter is only applicable to Blob auditing.
73+
7174
```yaml
7275
Type: String[]
7376
Parameter Sets: (All)
@@ -81,11 +84,14 @@ Accept wildcard characters: False
8184
```
8285
8386
### -AuditActionGroup
87+
Specify one or more audit action groups.
88+
This parameter is only applicable to Blob auditing.
89+
8490
```yaml
8591
Type: AuditActionGroups[]
8692
Parameter Sets: (All)
8793
Aliases:
88-
Accepted values: BATCH_STARTED_GROUP, BATCH_COMPLETED_GROUP, APPLICATION_ROLE_CHANGE_PASSWORD_GROUP, AUDIT_CHANGE_GROUP, BACKUP_RESTORE_GROUP, DATABASE_LOGOUT_GROUP, DATABASE_OBJECT_CHANGE_GROUP, DATABASE_OBJECT_OWNERSHIP_CHANGE_GROUP, DATABASE_OBJECT_PERMISSION_CHANGE_GROUP, DATABASE_OPERATION_GROUP, DATABASE_PERMISSION_CHANGE_GROUP, DATABASE_PRINCIPAL_CHANGE_GROUP, DATABASE_PRINCIPAL_IMPERSONATION_GROUP, DATABASE_ROLE_MEMBER_CHANGE_GROUP, FAILED_DATABASE_AUTHENTICATION_GROUP, SCHEMA_OBJECT_ACCESS_GROUP, SCHEMA_OBJECT_CHANGE_GROUP, SCHEMA_OBJECT_OWNERSHIP_CHANGE_GROUP, SCHEMA_OBJECT_PERMISSION_CHANGE_GROUP, SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP, USER_CHANGE_PASSWORD_GROUP
94+
Accepted values: BATCH_STARTED_GROUP, BATCH_COMPLETED_GROUP, APPLICATION_ROLE_CHANGE_PASSWORD_GROUP, BACKUP_RESTORE_GROUP, DATABASE_LOGOUT_GROUP, DATABASE_OBJECT_CHANGE_GROUP, DATABASE_OBJECT_OWNERSHIP_CHANGE_GROUP, DATABASE_OBJECT_PERMISSION_CHANGE_GROUP, DATABASE_OPERATION_GROUP, DATABASE_PERMISSION_CHANGE_GROUP, DATABASE_PRINCIPAL_CHANGE_GROUP, DATABASE_PRINCIPAL_IMPERSONATION_GROUP, DATABASE_ROLE_MEMBER_CHANGE_GROUP, FAILED_DATABASE_AUTHENTICATION_GROUP, SCHEMA_OBJECT_ACCESS_GROUP, SCHEMA_OBJECT_CHANGE_GROUP, SCHEMA_OBJECT_OWNERSHIP_CHANGE_GROUP, SCHEMA_OBJECT_PERMISSION_CHANGE_GROUP, SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP, USER_CHANGE_PASSWORD_GROUP
8995

9096
Required: False
9197
Position: Named
@@ -125,20 +131,7 @@ Accept wildcard characters: False
125131
126132
### -EventType
127133
Specifies the event types to audit.
128-
The acceptable values for this parameter are:
129-
130-
- PlainSQL_Success
131-
- PlainSQL_Failure
132-
- ParameterizedSQL_Success
133-
- ParameterizedSQL_Failure
134-
- StoredProcedure_Success
135-
- StoredProcedure_Failure
136-
- Login_Success
137-
- Login_Failure
138-
- TransactionManagement_Success
139-
- TransactionManagement_Failure
140-
- All
141-
- None
134+
This parameter is only applicable to Table auditing.
142135
143136
You can specify several event types.
144137
You can specify All to audit all of the event types or None to specify that no events will be audited.

src/ResourceManager/Sql/Commands.Sql/help/Set-AzureRmSqlServerAuditing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The set of the audit action groups
5151
Type: AuditActionGroups[]
5252
Parameter Sets: (All)
5353
Aliases:
54-
Accepted values: BATCH_STARTED_GROUP, BATCH_COMPLETED_GROUP, APPLICATION_ROLE_CHANGE_PASSWORD_GROUP, AUDIT_CHANGE_GROUP, BACKUP_RESTORE_GROUP, DATABASE_LOGOUT_GROUP, DATABASE_OBJECT_CHANGE_GROUP, DATABASE_OBJECT_OWNERSHIP_CHANGE_GROUP, DATABASE_OBJECT_PERMISSION_CHANGE_GROUP, DATABASE_OPERATION_GROUP, DATABASE_PERMISSION_CHANGE_GROUP, DATABASE_PRINCIPAL_CHANGE_GROUP, DATABASE_PRINCIPAL_IMPERSONATION_GROUP, DATABASE_ROLE_MEMBER_CHANGE_GROUP, FAILED_DATABASE_AUTHENTICATION_GROUP, SCHEMA_OBJECT_ACCESS_GROUP, SCHEMA_OBJECT_CHANGE_GROUP, SCHEMA_OBJECT_OWNERSHIP_CHANGE_GROUP, SCHEMA_OBJECT_PERMISSION_CHANGE_GROUP, SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP, USER_CHANGE_PASSWORD_GROUP
54+
Accepted values: BATCH_STARTED_GROUP, BATCH_COMPLETED_GROUP, APPLICATION_ROLE_CHANGE_PASSWORD_GROUP, BACKUP_RESTORE_GROUP, DATABASE_LOGOUT_GROUP, DATABASE_OBJECT_CHANGE_GROUP, DATABASE_OBJECT_OWNERSHIP_CHANGE_GROUP, DATABASE_OBJECT_PERMISSION_CHANGE_GROUP, DATABASE_OPERATION_GROUP, DATABASE_PERMISSION_CHANGE_GROUP, DATABASE_PRINCIPAL_CHANGE_GROUP, DATABASE_PRINCIPAL_IMPERSONATION_GROUP, DATABASE_ROLE_MEMBER_CHANGE_GROUP, FAILED_DATABASE_AUTHENTICATION_GROUP, SCHEMA_OBJECT_ACCESS_GROUP, SCHEMA_OBJECT_CHANGE_GROUP, SCHEMA_OBJECT_OWNERSHIP_CHANGE_GROUP, SCHEMA_OBJECT_PERMISSION_CHANGE_GROUP, SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP, USER_CHANGE_PASSWORD_GROUP
5555

5656
Required: False
5757
Position: Named

src/ResourceManager/Sql/Commands.Sql/help/Set-AzureRmSqlServerAuditingPolicy.md

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,14 @@ This command does not modify any other setting.
6262
## PARAMETERS
6363

6464
### -AuditActionGroup
65-
Specify one or more audit action groups.
65+
Specify one or more audit action groups.
66+
This parameter is only applicable to Blob auditing.
6667

6768
```yaml
6869
Type: AuditActionGroups[]
6970
Parameter Sets: (All)
7071
Aliases:
71-
Accepted values: BATCH_STARTED_GROUP, BATCH_COMPLETED_GROUP, APPLICATION_ROLE_CHANGE_PASSWORD_GROUP, AUDIT_CHANGE_GROUP, BACKUP_RESTORE_GROUP, DATABASE_LOGOUT_GROUP, DATABASE_OBJECT_CHANGE_GROUP, DATABASE_OBJECT_OWNERSHIP_CHANGE_GROUP, DATABASE_OBJECT_PERMISSION_CHANGE_GROUP, DATABASE_OPERATION_GROUP, DATABASE_PERMISSION_CHANGE_GROUP, DATABASE_PRINCIPAL_CHANGE_GROUP, DATABASE_PRINCIPAL_IMPERSONATION_GROUP, DATABASE_ROLE_MEMBER_CHANGE_GROUP, FAILED_DATABASE_AUTHENTICATION_GROUP, SCHEMA_OBJECT_ACCESS_GROUP, SCHEMA_OBJECT_CHANGE_GROUP, SCHEMA_OBJECT_OWNERSHIP_CHANGE_GROUP, SCHEMA_OBJECT_PERMISSION_CHANGE_GROUP, SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP, USER_CHANGE_PASSWORD_GROUP
72+
Accepted values: BATCH_STARTED_GROUP, BATCH_COMPLETED_GROUP, APPLICATION_ROLE_CHANGE_PASSWORD_GROUP, BACKUP_RESTORE_GROUP, DATABASE_LOGOUT_GROUP, DATABASE_OBJECT_CHANGE_GROUP, DATABASE_OBJECT_OWNERSHIP_CHANGE_GROUP, DATABASE_OBJECT_PERMISSION_CHANGE_GROUP, DATABASE_OPERATION_GROUP, DATABASE_PERMISSION_CHANGE_GROUP, DATABASE_PRINCIPAL_CHANGE_GROUP, DATABASE_PRINCIPAL_IMPERSONATION_GROUP, DATABASE_ROLE_MEMBER_CHANGE_GROUP, FAILED_DATABASE_AUTHENTICATION_GROUP, SCHEMA_OBJECT_ACCESS_GROUP, SCHEMA_OBJECT_CHANGE_GROUP, SCHEMA_OBJECT_OWNERSHIP_CHANGE_GROUP, SCHEMA_OBJECT_PERMISSION_CHANGE_GROUP, SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP, USER_CHANGE_PASSWORD_GROUP
7273

7374
Required: False
7475
Position: Named
@@ -95,20 +96,7 @@ Accept wildcard characters: False
9596
9697
### -EventType
9798
Specifies the event types to audit.
98-
The acceptable values for this parameter are:
99-
100-
- PlainSQL_Success
101-
- PlainSQL_Failure
102-
- ParameterizedSQL_Success
103-
- ParameterizedSQL_Failure
104-
- StoredProcedure_Success
105-
- StoredProcedure_Failure
106-
- Login_Success
107-
- Login_Failure
108-
- TransactionManagement_Success
109-
- TransactionManagement_Failure
110-
- All
111-
- None
99+
This parameter is only applicable to Table auditing.
112100
113101
You can specify several event types.
114102
You can specify All to audit all of the event types or None to specify that no events will be audited.

src/ResourceManager/Websites/Commands.Websites/help/Get-AzureRmWebAppSlot.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file: Microsoft.Azure.Commands.Websites.dll-Help.xml
33
ms.assetid: 100A5980-31E2-41F9-84D4-2F5F0CB78B8A
4-
online version:
4+
online version:
55
schema: 2.0.0
66
---
77

@@ -12,27 +12,28 @@ Gets an Azure Web App slot.
1212

1313
## SYNTAX
1414

15-
### S1
15+
### Get by Name
1616
```
1717
Get-AzureRmWebAppSlot [-ResourceGroupName] <String> [-Name] <String> [[-Slot] <String>] [<CommonParameters>]
1818
```
1919

20-
### S2
20+
### Get by Slot
2121
```
2222
Get-AzureRmWebAppSlot [[-Slot] <String>] [-WebApp] <Site> [<CommonParameters>]
2323
```
2424

2525
## DESCRIPTION
26-
The **Get-AzureRmWebApp** cmdlet gets information about an Azure Web App Slot.
26+
The **Get-AzureRmWebAppSlot** cmdlet gets information about an Azure Web App Slot.
2727

2828
## EXAMPLES
2929

3030
### Example 1
3131
```
32-
PS C:\> Get-AzureRmWebApp -ResourceGroupName "Default-Web-WestUS" -Name "WebAppStandard" -Slot "Slot001"
32+
PS C:\> Get-AzureRmWebAppSlot -ResourceGroupName "Default-Web-WestUS" -Name "WebAppStandard" -Slot "Slot001"
3333
```
3434

35-
This command gets the slot named Slot001 from the Web App named WebAppStandard that belongs to the resource group Default-Web-WestUS.
35+
This command gets the slot named Slot001 from the Web App named WebAppStandard that belongs to the
36+
resource group Default-Web-WestUS.
3637

3738
## PARAMETERS
3839

@@ -42,7 +43,7 @@ WebApp Name
4243
```yaml
4344
Type: String
4445
Parameter Sets: S1
45-
Aliases:
46+
Aliases:
4647

4748
Required: True
4849
Position: 1
@@ -57,7 +58,7 @@ Resource Group Name
5758
```yaml
5859
Type: String
5960
Parameter Sets: S1
60-
Aliases:
61+
Aliases:
6162

6263
Required: True
6364
Position: 0
@@ -72,7 +73,7 @@ WebApp Slot Name
7273
```yaml
7374
Type: String
7475
Parameter Sets: (All)
75-
Aliases:
76+
Aliases:
7677

7778
Required: False
7879
Position: 2
@@ -87,7 +88,7 @@ WebApp Object
8788
```yaml
8889
Type: Site
8990
Parameter Sets: S2
90-
Aliases:
91+
Aliases:
9192

9293
Required: True
9394
Position: 0
@@ -97,7 +98,11 @@ Accept wildcard characters: False
9798
```
9899
99100
### CommonParameters
100-
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).
101+
102+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
103+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
104+
-WarningAction, and -WarningVariable. For more information, see about_CommonParameters
105+
(http://go.microsoft.com/fwlink/?LinkID=113216).
101106
102107
## INPUTS
103108

0 commit comments

Comments
 (0)