Skip to content

Commit 5750a68

Browse files
Merge pull request #3702 from MicrosoftDocs/main
Auto Publish – main to live - 2025-08-15 22:30 UTC
2 parents 02748e0 + b777853 commit 5750a68

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs-conceptual/azps-14.1.0/migrate-az-14.0.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $authHeader = @{
2323
'Content-Type' = 'application/json'
2424
'Authorization' = 'Bearer ' + (Get-AccessToken)
2525
}
26-
$respone = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri
26+
$response = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri
2727
```
2828

2929
#### After
@@ -40,7 +40,7 @@ $authHeader = @{
4040
'Content-Type' = 'application/json'
4141
'Authorization' = 'Bearer ' + $plaintextToken
4242
}
43-
$respone = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri
43+
$response = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri
4444
```
4545

4646

docs-conceptual/azps-14.2.0/migrate-az-14.0.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $authHeader = @{
2323
'Content-Type' = 'application/json'
2424
'Authorization' = 'Bearer ' + (Get-AccessToken)
2525
}
26-
$respone = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri
26+
$response = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri
2727
```
2828

2929
#### After
@@ -40,7 +40,7 @@ $authHeader = @{
4040
'Content-Type' = 'application/json'
4141
'Authorization' = 'Bearer ' + $plaintextToken
4242
}
43-
$respone = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri
43+
$response = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri
4444
```
4545

4646

docs-conceptual/azps-14.3.0/migrate-az-14.0.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $authHeader = @{
2323
'Content-Type' = 'application/json'
2424
'Authorization' = 'Bearer ' + (Get-AccessToken)
2525
}
26-
$respone = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri
26+
$response = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri
2727
```
2828

2929
#### After
@@ -40,7 +40,7 @@ $authHeader = @{
4040
'Content-Type' = 'application/json'
4141
'Authorization' = 'Bearer ' + $plaintextToken
4242
}
43-
$respone = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri
43+
$response = Invoke-RestMethod -Method Get -Headers $authHeader -Uri $uri
4444
```
4545

4646

0 commit comments

Comments
 (0)