File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ function Get-NSGFlowLogCloudBlockBlob {
66
66
# Gets the storage blog
67
67
$Blob = Get-AzStorageBlob -Context $ctx -Container $ContainerName -Blob $BlobName
68
68
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
71
71
72
72
#Return the Cloud Block Blob
73
73
$CloudBlockBlob
@@ -77,7 +77,7 @@ function Get-NSGFlowLogCloudBlockBlob {
77
77
function Get-NSGFlowLogBlockList {
78
78
[CmdletBinding()]
79
79
param (
80
- [Microsoft.WindowsAzure .Storage.Blob.CloudBlockBlob] [Parameter(Mandatory=$true)] $CloudBlockBlob
80
+ [Microsoft.Azure .Storage.Blob.CloudBlockBlob] [Parameter(Mandatory=$true)] $CloudBlockBlob
81
81
)
82
82
process {
83
83
# Stores the block list in a variable from the block blob.
@@ -119,7 +119,7 @@ function Get-NSGFlowLogReadBlock {
119
119
[CmdletBinding()]
120
120
param (
121
121
[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
123
123
124
124
)
125
125
# Set the size of the byte array to the largest block
You can’t perform that action at this time.
0 commit comments