Skip to content

Commit 84e5ae4

Browse files
authored
Merge pull request #91390 from msrini-MSFT/patch-50
(AzureCXP) fixes MicrosoftDocs/azure-docs#40555
2 parents dc7b05c + 3a08a0a commit 84e5ae4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/network-watcher/network-watcher-read-nsg-flow-logs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ function Get-NSGFlowLogCloudBlockBlob {
6666
# Gets the storage blog
6767
$Blob = Get-AzStorageBlob -Context $ctx -Container $ContainerName -Blob $BlobName
6868
69-
# Gets the block blog of type 'Microsoft.WindowsAzure.Storage.Blob.CloudBlob' from the storage blob
70-
$CloudBlockBlob = [Microsoft.WindowsAzure.Storage.Blob.CloudBlockBlob] $Blob.ICloudBlob
69+
# Gets the block blog of type 'Microsoft.Azure.Storage.Blob.CloudBlob' from the storage blob
70+
$CloudBlockBlob = [Microsoft.Azure.Storage.Blob.CloudBlockBlob] $Blob.ICloudBlob
7171
7272
#Return the Cloud Block Blob
7373
$CloudBlockBlob
@@ -77,7 +77,7 @@ function Get-NSGFlowLogCloudBlockBlob {
7777
function Get-NSGFlowLogBlockList {
7878
[CmdletBinding()]
7979
param (
80-
[Microsoft.WindowsAzure.Storage.Blob.CloudBlockBlob] [Parameter(Mandatory=$true)] $CloudBlockBlob
80+
[Microsoft.Azure.Storage.Blob.CloudBlockBlob] [Parameter(Mandatory=$true)] $CloudBlockBlob
8181
)
8282
process {
8383
# Stores the block list in a variable from the block blob.
@@ -119,7 +119,7 @@ function Get-NSGFlowLogReadBlock {
119119
[CmdletBinding()]
120120
param (
121121
[System.Array] [Parameter(Mandatory=$true)] $blockList,
122-
[Microsoft.WindowsAzure.Storage.Blob.CloudBlockBlob] [Parameter(Mandatory=$true)] $CloudBlockBlob
122+
[Microsoft.Azure.Storage.Blob.CloudBlockBlob] [Parameter(Mandatory=$true)] $CloudBlockBlob
123123
124124
)
125125
# Set the size of the byte array to the largest block

0 commit comments

Comments
 (0)