Skip to content

Commit e2dbe4c

Browse files
author
Maddie Clayton
authored
Merge pull request #7078 from deathly809/Update1.5.0
[Azure Stack][Admin] Update for Azure Stack 1.5.0
2 parents c2765af + c238c2e commit e2dbe4c

19 files changed

+194
-135
lines changed

src/StackAdmin/Azs.Update.Admin/Module/Azs.Update.Admin/Azs.Update.Admin.psd1

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Licensed under the MIT License. See License.txt in the project root for license
1717
RootModule = 'Azs.Update.Admin.psm1'
1818

1919
# Version number of this module.
20-
ModuleVersion = '0.1.1'
20+
ModuleVersion = '0.2.0'
2121

2222
# Supported PSEditions
2323
# CompatiblePSEditions = @()
@@ -38,7 +38,7 @@ Licensed under the MIT License. See License.txt in the project root for license
3838
Description = 'Update Admin Client'
3939

4040
# Minimum version of the Windows PowerShell engine required by this module
41-
# PowerShellVersion = ''
41+
PowerShellVersion = '5.0'
4242

4343
# Name of the Windows PowerShell host required by this module
4444
# PowerShellHostName = ''
@@ -56,8 +56,8 @@ Licensed under the MIT License. See License.txt in the project root for license
5656
# ProcessorArchitecture = ''
5757

5858
# Modules that must be imported into the global environment prior to importing this module
59-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '3.4.1'; },
60-
@{ModuleName = 'AzureRM.Resources'; RequiredVersion = '4.4.1'; })
59+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.5.1'; },
60+
@{ModuleName = 'AzureRM.Resources'; ModuleVersion = '6.0.2'; })
6161

6262
# Assemblies that must be loaded prior to importing this module
6363
# RequiredAssemblies = @()
@@ -102,19 +102,32 @@ Licensed under the MIT License. See License.txt in the project root for license
102102
PSData = @{
103103

104104
# Tags applied to this module. These help with module discovery in online galleries.
105-
# Tags = @()
105+
Tags = @('AzureStack', 'Azure Stack', 'Admin', 'Update', 'Azure Stack Update', 'URP')
106106

107107
# A URL to the license for this module.
108-
# LicenseUri = ''
108+
LicenseUri = 'https://aka.ms/azps-license'
109109

110110
# A URL to the main website for this project.
111-
# ProjectUri = ''
111+
ProjectUri = 'https://github.com/Azure/azure-powershell'
112112

113113
# A URL to an icon representing this module.
114114
# IconUri = ''
115115

116116
# ReleaseNotes of this module
117-
# ReleaseNotes = ''
117+
ReleaseNotes = '## 2018.8.12
118+
* Module dependencies updated
119+
* AzureRM.Profile
120+
* AzureRM.Resources
121+
* Support handling names of nested resources
122+
* Get-AzsUpdate
123+
* Get-UpdateRun
124+
* Install-AzsUpdate
125+
* Resume-AzsUpdate
126+
* Deprecations
127+
* Get-AzsBackup, the parameter Update is now an alias for Name
128+
* Bug fixes
129+
* Handle ErrrorAction correctly now
130+
'
118131

119132
} # End of PSData hashtable
120133

src/StackAdmin/Azs.Update.Admin/Module/Azs.Update.Admin/Azs.Update.Admin.psm1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,6 @@ if (Test-Path -Path $ClrPath -PathType Container) {
2929
. (Join-Path -Path $PSScriptRoot -ChildPath 'Get-ApplicableFilters.ps1')
3030
. (Join-Path -Path $PSScriptRoot -ChildPath 'Test-FilteredResult.ps1')
3131
. (Join-Path -Path $PSScriptRoot -ChildPath 'Get-ArmResourceIdParameterValue.ps1')
32+
. (Join-Path -Path $PSScriptRoot -ChildPath 'Get-ResourceNameSuffix.ps1')
3233
$allPs1FilesPath = Join-Path -Path $PSScriptRoot -ChildPath 'Generated.PowerShell.Commands' | Join-Path -ChildPath '*.ps1'
3334
Get-ChildItem -Path $allPs1FilesPath -Recurse -File | ForEach-Object { . $_.FullName}

src/StackAdmin/Azs.Update.Admin/Module/Azs.Update.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Get-AzsUpdate.ps1

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,11 @@ function Get-AzsUpdate {
9090

9191
Process {
9292

93-
93+
if ($PSBoundParameters.ContainsKey('Name')) {
94+
if ( $MyInvocation.Line -match "\s-Update\s") {
95+
Write-Warning -Message "The parameter alias Update will be deprecated in future release. Please use the parameter Name instead"
96+
}
97+
}
9498

9599
$NewServiceClient_params = @{
96100
FullClientTypeName = 'Microsoft.AzureStack.Management.Update.Admin.UpdateAdminClient'
@@ -162,6 +166,7 @@ function Get-AzsUpdate {
162166
Write-Verbose -Message 'Performing operation ListWithHttpMessagesAsync on $UpdateAdminClient.'
163167
$TaskResult = $UpdateAdminClient.Updates.ListWithHttpMessagesAsync($ResourceGroupName, $Location)
164168
} elseif ('Get' -eq $PsCmdlet.ParameterSetName -or 'ResourceId' -eq $PsCmdlet.ParameterSetName) {
169+
$Name = Get-ResourceNameSuffix -ResourceName $Name
165170
Write-Verbose -Message 'Performing operation GetWithHttpMessagesAsync on $UpdateAdminClient.'
166171
$TaskResult = $UpdateAdminClient.Updates.GetWithHttpMessagesAsync($ResourceGroupName, $Location, $Name)
167172
} else {

src/StackAdmin/Azs.Update.Admin/Module/Azs.Update.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Get-AzsUpdateRun.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,14 @@ function Get-AzsUpdateRun {
168168
}
169169
return
170170
}
171+
172+
$UpdateName = Get-ResourceNameSuffix -ResourceName $UpdateName
173+
171174
if ('List' -eq $PsCmdlet.ParameterSetName -or 'InputObject' -eq $PsCmdlet.ParameterSetName) {
172175
Write-Verbose -Message 'Performing operation ListWithHttpMessagesAsync on $UpdateAdminClient.'
173176
$TaskResult = $UpdateAdminClient.UpdateRuns.ListWithHttpMessagesAsync($ResourceGroupName, $Location, $UpdateName)
174177
} elseif ('Get' -eq $PsCmdlet.ParameterSetName -or 'ResourceId' -eq $PsCmdlet.ParameterSetName) {
178+
$UpdateName = Get-ResourceNameSuffix -ResourceName $UpdateName
175179
Write-Verbose -Message 'Performing operation GetWithHttpMessagesAsync on $UpdateAdminClient.'
176180
$TaskResult = $UpdateAdminClient.UpdateRuns.GetWithHttpMessagesAsync($ResourceGroupName, $Location, $UpdateName, $Name)
177181
} else {

src/StackAdmin/Azs.Update.Admin/Module/Azs.Update.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Install-AzsUpdate.ps1

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ function Install-AzsUpdate {
7878

7979
Process {
8080

81-
82-
83-
8481
if ('ResourceId' -eq $PsCmdlet.ParameterSetName) {
8582
$GetArmResourceIdParameterValue_params = @{
8683
IdTemplate = '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroup}/providers/Microsoft.Update.Admin/updateLocations/{updateLocation}/updates/{update}'
@@ -91,6 +88,8 @@ function Install-AzsUpdate {
9188
$ResourceGroupName = $ArmResourceIdParameterValues['resourceGroup']
9289
$Location = $ArmResourceIdParameterValues['updateLocation']
9390
$Name = $ArmResourceIdParameterValues['update']
91+
} else {
92+
$Name = Get-ResourceNameSuffix -ResourceName $Name
9493
}
9594

9695
if ($PsCmdlet.ShouldProcess($Name, "Install the update")) {

src/StackAdmin/Azs.Update.Admin/Module/Azs.Update.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Resume-AzsUpdateRun.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,6 @@ function Resume-AzsUpdateRun {
8484

8585
Process {
8686

87-
88-
8987
if ( 'ResourceId' -eq $PsCmdlet.ParameterSetName) {
9088
$GetArmResourceIdParameterValue_params = @{
9189
IdTemplate = '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroup}/providers/Microsoft.Update.Admin/updateLocations/{updateLocation}/updates/{update}/updateRuns/{runId}'
@@ -97,6 +95,8 @@ function Resume-AzsUpdateRun {
9795
$Location = $ArmResourceIdParameterValues['updateLocation']
9896
$UpdateName = $ArmResourceIdParameterValues['update']
9997
$Name = $ArmResourceIdParameterValues['runId']
98+
} else {
99+
$Name = Get-ResourceNameSuffix -ResourceName $Name
100100
}
101101

102102
if ($PsCmdlet.ShouldProcess($Name, "Resume the update")) {

src/StackAdmin/Azs.Update.Admin/Module/Azs.Update.Admin/Get-ApplicableFilters.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function Get-ApplicableFilters {
2121
$Filters
2222
)
2323

24-
$ErrorActionPreference = 'Stop'
24+
2525
foreach ($filter in $Filters) {
2626
$res = @{
2727
Filter = $filter
@@ -31,7 +31,7 @@ function Get-ApplicableFilters {
3131
if (Test-WildcardFilter -Filter $filter) {
3232
$res['Strict'] = $true
3333
}
34-
}
34+
}
3535
elseif ($filter.Type -eq 'equalityOperator') {
3636
if (Test-EqualityFilter -Filter $filter) {
3737
$res['Strict'] = $true
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
function Get-ResourceNameSuffix {
3+
param(
4+
[string]$ResourceName
5+
)
6+
if ($null -ne $ResourceName -and $ResourceName.Contains('/')) {
7+
$ResourceName = $ResourceName.Split("/")[-1]
8+
}
9+
return $ResourceName
10+
}

src/StackAdmin/Azs.Update.Admin/Module/Azs.Update.Admin/Get-TaskResult.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ function Get-TaskResult {
5959
} catch {
6060
# Catch exception so no output.
6161
} finally {
62-
throw $Exception
62+
Write-Error -Exception $Exception
6363
}
6464
}
6565

66-
$ErrorActionPreference = 'Stop'
66+
6767
$null = $TaskResult.AsyncWaitHandle.WaitOne()
6868
Write-Debug -Message "$($TaskResult | Out-String)"
6969

src/StackAdmin/Azs.Update.Admin/Module/Azs.Update.Admin/Test-FilteredResult.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function Test-FilteredResult {
2727
$Filter
2828
)
2929

30-
$ErrorActionPreference = 'Stop'
30+
3131
if ($Filter.Type -eq 'wildcard') {
3232
Test-WildcardFilterOnResult -Filter $Filter -Result $Result
3333
} elseif ($Filter.Type -eq 'equalityOperator') {

src/StackAdmin/Azs.Update.Admin/Tests/Azs.Update.Admin.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@
7070
</ProjectReference>
7171
</ItemGroup>
7272
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
73-
</Project>
73+
</Project>

src/StackAdmin/Azs.Update.Admin/Tests/SessionRecords/UpdateAdminClient/TestGetUpdate.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"Microsoft.AzureStack.Management.Update.Admin.UpdateAdminClient/0.1.0.0"
1818
]
1919
},
20-
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/23d66fd1-4743-42ff-b391-e29dc51d799e/resourceGroups/System.Redmond/providers/Microsoft.Update.Admin/updateLocations/redmond\",\r\n \"name\": \"redmond\",\r\n \"type\": \"Microsoft.Update.Admin/updateLocations\",\r\n \"location\": \"redmond\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"currentVersion\": \"1.0.180302.1\",\r\n \"currentOemVersion\": \"1.0.1709.3\",\r\n \"lastUpdated\": \"2018-03-03T08:09:12.8824552Z\",\r\n \"state\": \"AppliedSuccessfully\"\r\n }\r\n }\r\n ]\r\n}",
20+
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/23d66fd1-4743-42ff-b391-e29dc51d799e/resourceGroups/System.Redmond/providers/Microsoft.Update.Admin/updateLocations/Redmond\",\r\n \"name\": \"Redmond\",\r\n \"type\": \"Microsoft.Update.Admin/updateLocations\",\r\n \"location\": \"Redmond\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"currentVersion\": \"1.0.180302.1\",\r\n \"currentOemVersion\": \"1.0.1709.3\",\r\n \"lastUpdated\": \"2018-03-03T08:09:12.8824552Z\",\r\n \"state\": \"AppliedSuccessfully\"\r\n }\r\n }\r\n ]\r\n}",
2121
"ResponseHeaders": {
2222
"Content-Length": [
2323
"410"
@@ -65,8 +65,8 @@
6565
"StatusCode": 200
6666
},
6767
{
68-
"RequestUri": "/subscriptions/23d66fd1-4743-42ff-b391-e29dc51d799e/resourcegroups/System.Redmond/providers/Microsoft.Update.Admin/updateLocations/redmond/updates?api-version=2016-05-01",
69-
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjNkNjZmZDEtNDc0My00MmZmLWIzOTEtZTI5ZGM1MWQ3OTllL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5SZWRtb25kL3Byb3ZpZGVycy9NaWNyb3NvZnQuVXBkYXRlLkFkbWluL3VwZGF0ZUxvY2F0aW9ucy9yZWRtb25kL3VwZGF0ZXM/YXBpLXZlcnNpb249MjAxNi0wNS0wMQ==",
68+
"RequestUri": "/subscriptions/23d66fd1-4743-42ff-b391-e29dc51d799e/resourcegroups/System.Redmond/providers/Microsoft.Update.Admin/updateLocations/Redmond/updates?api-version=2016-05-01",
69+
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjNkNjZmZDEtNDc0My00MmZmLWIzOTEtZTI5ZGM1MWQ3OTllL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5SZWRtb25kL3Byb3ZpZGVycy9NaWNyb3NvZnQuVXBkYXRlLkFkbWluL3VwZGF0ZUxvY2F0aW9ucy9SZWRtb25kL3VwZGF0ZXM/YXBpLXZlcnNpb249MjAxNi0wNS0wMQ==",
7070
"RequestMethod": "GET",
7171
"RequestBody": "",
7272
"RequestHeaders": {
@@ -81,7 +81,7 @@
8181
"Microsoft.AzureStack.Management.Update.Admin.UpdateAdminClient/0.1.0.0"
8282
]
8383
},
84-
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/23d66fd1-4743-42ff-b391-e29dc51d799e/resourceGroups/System.Redmond/providers/Microsoft.Update.Admin/updateLocations/redmond/updates/Microsoft1.0.180302.1\",\r\n \"name\": \"Microsoft1.0.180302.1\",\r\n \"type\": \"Microsoft.Update.Admin/updateLocations/updates\",\r\n \"location\": \"redmond\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dateAvailable\": \"0001-01-01T00:00:00\",\r\n \"installedDate\": \"2018-03-03T08:09:12.8824552Z\",\r\n \"description\": \"MAS Update 1.0.180302.1\",\r\n \"state\": \"Installed\",\r\n \"kbLink\": \"https://aka.ms/azurestackupdate\",\r\n \"minVersionRequired\": \"1.0.180103.2\",\r\n \"packagePath\": \"\\\\\\\\SU1FileServer\\\\SU1_Infrastructure_2\\\\Updates\\\\Packages\\\\Microsoft1.0.180302.1\",\r\n \"packageSizeInMb\": 2144,\r\n \"updateName\": \"MAS - 1.0.180302.1\",\r\n \"version\": \"1.0.180302.1\",\r\n \"updateOemFile\": \"\",\r\n \"publisher\": \"Microsoft\",\r\n \"packageType\": \"Microsoft\"\r\n }\r\n }\r\n ]\r\n}",
84+
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/23d66fd1-4743-42ff-b391-e29dc51d799e/resourceGroups/System.Redmond/providers/Microsoft.Update.Admin/updateLocations/Redmond/updates/Microsoft1.0.180302.1\",\r\n \"name\": \"Microsoft1.0.180302.1\",\r\n \"type\": \"Microsoft.Update.Admin/updateLocations/updates\",\r\n \"location\": \"Redmond\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dateAvailable\": \"0001-01-01T00:00:00\",\r\n \"installedDate\": \"2018-03-03T08:09:12.8824552Z\",\r\n \"description\": \"MAS Update 1.0.180302.1\",\r\n \"state\": \"Installed\",\r\n \"kbLink\": \"https://aka.ms/azurestackupdate\",\r\n \"minVersionRequired\": \"1.0.180103.2\",\r\n \"packagePath\": \"\\\\\\\\SU1FileServer\\\\SU1_Infrastructure_2\\\\Updates\\\\Packages\\\\Microsoft1.0.180302.1\",\r\n \"packageSizeInMb\": 2144,\r\n \"updateName\": \"MAS - 1.0.180302.1\",\r\n \"version\": \"1.0.180302.1\",\r\n \"updateOemFile\": \"\",\r\n \"publisher\": \"Microsoft\",\r\n \"packageType\": \"Microsoft\"\r\n }\r\n }\r\n ]\r\n}",
8585
"ResponseHeaders": {
8686
"Content-Length": [
8787
"795"
@@ -129,8 +129,8 @@
129129
"StatusCode": 200
130130
},
131131
{
132-
"RequestUri": "/subscriptions/23d66fd1-4743-42ff-b391-e29dc51d799e/resourcegroups/System.Redmond/providers/Microsoft.Update.Admin/updateLocations/redmond/updates/Microsoft1.0.180302.1?api-version=2016-05-01",
133-
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjNkNjZmZDEtNDc0My00MmZmLWIzOTEtZTI5ZGM1MWQ3OTllL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5SZWRtb25kL3Byb3ZpZGVycy9NaWNyb3NvZnQuVXBkYXRlLkFkbWluL3VwZGF0ZUxvY2F0aW9ucy9yZWRtb25kL3VwZGF0ZXMvTWljcm9zb2Z0MS4wLjE4MDMwMi4xP2FwaS12ZXJzaW9uPTIwMTYtMDUtMDE=",
132+
"RequestUri": "/subscriptions/23d66fd1-4743-42ff-b391-e29dc51d799e/resourcegroups/System.Redmond/providers/Microsoft.Update.Admin/updateLocations/Redmond/updates/Microsoft1.0.180302.1?api-version=2016-05-01",
133+
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjNkNjZmZDEtNDc0My00MmZmLWIzOTEtZTI5ZGM1MWQ3OTllL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5SZWRtb25kL3Byb3ZpZGVycy9NaWNyb3NvZnQuVXBkYXRlLkFkbWluL3VwZGF0ZUxvY2F0aW9ucy9SZWRtb25kL3VwZGF0ZXMvTWljcm9zb2Z0MS4wLjE4MDMwMi4xP2FwaS12ZXJzaW9uPTIwMTYtMDUtMDE=",
134134
"RequestMethod": "GET",
135135
"RequestBody": "",
136136
"RequestHeaders": {
@@ -145,7 +145,7 @@
145145
"Microsoft.AzureStack.Management.Update.Admin.UpdateAdminClient/0.1.0.0"
146146
]
147147
},
148-
"ResponseBody": "{\r\n \"id\": \"/subscriptions/23d66fd1-4743-42ff-b391-e29dc51d799e/resourcegroups/System.Redmond/providers/Microsoft.Update.Admin/updateLocations/redmond/updates/Microsoft1.0.180302.1\",\r\n \"name\": \"Microsoft1.0.180302.1\",\r\n \"type\": \"Microsoft.Update.Admin/updateLocations/updates\",\r\n \"location\": \"redmond\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dateAvailable\": \"0001-01-01T00:00:00\",\r\n \"installedDate\": \"2018-03-03T08:09:12.8824552Z\",\r\n \"description\": \"MAS Update 1.0.180302.1\",\r\n \"state\": \"Installed\",\r\n \"kbLink\": \"https://aka.ms/azurestackupdate\",\r\n \"minVersionRequired\": \"1.0.180103.2\",\r\n \"packagePath\": \"\\\\\\\\SU1FileServer\\\\SU1_Infrastructure_2\\\\Updates\\\\Packages\\\\Microsoft1.0.180302.1\",\r\n \"packageSizeInMb\": 2144,\r\n \"updateName\": \"MAS - 1.0.180302.1\",\r\n \"version\": \"1.0.180302.1\",\r\n \"updateOemFile\": \"\",\r\n \"publisher\": \"Microsoft\",\r\n \"packageType\": \"Microsoft\"\r\n }\r\n}",
148+
"ResponseBody": "{\r\n \"id\": \"/subscriptions/23d66fd1-4743-42ff-b391-e29dc51d799e/resourcegroups/System.Redmond/providers/Microsoft.Update.Admin/updateLocations/Redmond/updates/Microsoft1.0.180302.1\",\r\n \"name\": \"Microsoft1.0.180302.1\",\r\n \"type\": \"Microsoft.Update.Admin/updateLocations/updates\",\r\n \"location\": \"Redmond\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"dateAvailable\": \"0001-01-01T00:00:00\",\r\n \"installedDate\": \"2018-03-03T08:09:12.8824552Z\",\r\n \"description\": \"MAS Update 1.0.180302.1\",\r\n \"state\": \"Installed\",\r\n \"kbLink\": \"https://aka.ms/azurestackupdate\",\r\n \"minVersionRequired\": \"1.0.180103.2\",\r\n \"packagePath\": \"\\\\\\\\SU1FileServer\\\\SU1_Infrastructure_2\\\\Updates\\\\Packages\\\\Microsoft1.0.180302.1\",\r\n \"packageSizeInMb\": 2144,\r\n \"updateName\": \"MAS - 1.0.180302.1\",\r\n \"version\": \"1.0.180302.1\",\r\n \"updateOemFile\": \"\",\r\n \"publisher\": \"Microsoft\",\r\n \"packageType\": \"Microsoft\"\r\n }\r\n}",
149149
"ResponseHeaders": {
150150
"Content-Length": [
151151
"783"
@@ -197,4 +197,4 @@
197197
"Variables": {
198198
"SubscriptionId": "23d66fd1-4743-42ff-b391-e29dc51d799e"
199199
}
200-
}
200+
}

0 commit comments

Comments
 (0)