Skip to content

Commit 865082d

Browse files
committed
Changes done
1 parent 868b861 commit 865082d

File tree

6 files changed

+4
-3
lines changed

6 files changed

+4
-3
lines changed

src/ResourceManager/Network/AzureRM.Network.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ CLRVersion = '4.0'
5454
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.0.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
57-
RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Network.dll'
57+
RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Network.dll', '.\Microsoft.Azure.Commands.OperationalInsights.dll','.\Microsoft.Azure.Management.OperationalInsights.dll','.\Microsoft.Azure.OperationalInsights.dll'
5858

5959
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
6060
# ScriptsToProcess = @()

src/ResourceManager/Network/Commands.Network/NetworkWatcher/SetAzureNetworkWatcherConfigFlowLogCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
using System.Net;
2121
using System.Management.Automation;
2222
using MNM = Microsoft.Azure.Management.Network.Models;
23-
using MOM = Microsoft.Azure.Commands.OperationalInsights.Models;
23+
using COM = Microsoft.Azure.Commands.OperationalInsights.Models;
2424

2525
namespace Microsoft.Azure.Commands.Network
2626
{
@@ -207,7 +207,7 @@ public class SetAzureNetworkWatcherConfigFlowLogCommand : NetworkWatcherBaseCmdl
207207
HelpMessage = "The WS object which is used to store the traffic analytics data.",
208208
ParameterSetName = SetByNameWithTAByResource)]
209209
[ValidateNotNull]
210-
public MOM.PSWorkspace Workspace { get; set; }
210+
public COM.PSWorkspace Workspace { get; set; }
211211

212212
public override void Execute()
213213
{

src/StackAdmin/AzureRM/AzureRM.psm1

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

tools/AzureRM/AzureRM.psm1

0 Bytes
Binary file not shown.

tools/StaticAnalysis/Exceptions/SignatureIssues.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation"
2+
"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkWatcherConfigFlowLogCommand","Set-AzureRmNetworkWatcherConfigFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet Set-AzureRmNetworkWatcherConfigFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name."
23
"Microsoft.Azure.Commands.ApiManagement.dll","Microsoft.Azure.Commands.ApiManagement.Commands.AddAzureApiManagementRegion","Add-AzureRmApiManagementRegion","1","8100","Add-AzureRmApiManagementRegion Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
34
"Microsoft.Azure.Commands.ApiManagement.dll","Microsoft.Azure.Commands.ApiManagement.Commands.NewAzureApiManagementHostnameConfiguration","New-AzureRmApiManagementHostnameConfiguration","1","8100","New-AzureRmApiManagementHostnameConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
45
"Microsoft.Azure.Commands.ApiManagement.dll","Microsoft.Azure.Commands.ApiManagement.Commands.NewAzureApiManagementVirtualNetwork","New-AzureRmApiManagementVirtualNetwork","1","8100","New-AzureRmApiManagementVirtualNetwork Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"

0 commit comments

Comments
 (0)