File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed
documentation/migration-guides Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -2114,6 +2114,7 @@ for a better powershell experience and as a result would witness breaking change
2114
2114
- Update-AzFrontDoorCdnCustomDomainValidationToken
2115
2115
- Update-AzFrontDoorCdnRule
2116
2116
* Renamed Set cmdlets to Update cmdlets
2117
+ * Renamed 'Unpublish-AzCdnEndpointContent' cmdlets to 'Clear-AzCdnEndpointContent'
2117
2118
* Added 'Object' suffix to memory object creation cmdlets
2118
2119
2119
2120
#### Az.Compute
Original file line number Diff line number Diff line change @@ -206,6 +206,34 @@ Update-AzCdnOrigin -ResourceGroupName $resourceGroupName -ProfileName $cdnProfil
206
206
-Name $originName -HostName "mystorage2.blob.core.windows.net" -HttpPort 456 -HttpsPort 789
207
207
```
208
208
209
+ ### ` Unpublish-AzCdnEndpointContent `
210
+ Replaced by command ` Clear-AzCdnEndpointContent `
211
+
212
+ #### Before
213
+ ``` powershell
214
+ Unpublish-AzCdnEndpointContent -ResourceGroupName $resourceGroupName -ProfileName $cdnProfileName -EndpointName $endpointName `
215
+ -PurgeContent $PurgeContent
216
+ ```
217
+ #### After
218
+ ``` powershell
219
+ Clear-AzCdnEndpointContent -ResourceGroupName $resourceGroupName -ProfileName $cdnProfileName -EndpointName $endpointName `
220
+ -ContentPath $PurgeContent
221
+ ```
222
+
223
+ ### ` Publish-AzCdnEndpointContent `
224
+ Replaced by command ` Import-AzCdnEndpointContent `
225
+
226
+ #### Before
227
+ ``` powershell
228
+ Publish-AzCdnEndpointContent -ResourceGroupName $resourceGroupName -ProfileName $cdnProfileName -EndpointName $endpointName `
229
+ -LoadContent $LoadContent
230
+ ```
231
+ #### After
232
+ ``` powershell
233
+ Import-AzCdnEndpointContent -ResourceGroupName $resourceGroupName -ProfileName $cdnProfileName -EndpointName $endpointName `
234
+ -ContentPath $LoadContent
235
+ ```
236
+
209
237
## Az.EventHub
210
238
211
239
### ` New-AzEventHubNamespace `
Original file line number Diff line number Diff line change 51
51
- Update-AzFrontDoorCdnCustomDomainValidationToken
52
52
- Update-AzFrontDoorCdnRule
53
53
* Renamed Set cmdlets to Update cmdlets
54
+ * Renamed ` Unpublish-AzCdnEndpointContent ` cmdlets to ` Clear-AzCdnEndpointContent `
54
55
* Added ` Object ` suffix to memory object creation cmdlets
55
56
56
57
## Version 1.8.3
You can’t perform that action at this time.
0 commit comments