Skip to content

Commit 204d865

Browse files
authored
[main - ManagedServiceIdentity|ManagedServices|ManagementPartner|Maps|MariaDb] domain name of online doc is changed from docs.microsoft.com to learn.microsoft.com. (#20280)
1 parent 4921530 commit 204d865

File tree

122 files changed

+157
-157
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+157
-157
lines changed

src/ManagedServiceIdentity/Az.ManagedServiceIdentity.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
}
3434

3535
if(-not $accountsModule) {
36-
Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. For installation instructions, please see: https://docs.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
36+
Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. For installation instructions, please see: https://learn.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
3737
} elseif (($accountsModule.Version -lt [System.Version]'2.7.5') -and (-not $localAccounts)) {
3838
Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to add the switch '-RegenerateSupportModule' when executing 'test-module.ps1'. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop
3939
}

src/ManagedServiceIdentity/create-model-cmdlets.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ Create an in-memory object for ${ObjectType}.
158158
.Outputs
159159
${ObjectTypeWithNamespace}
160160
.Link
161-
https://docs.microsoft.com/powershell/module/az.${ModuleName}/new-Az${ModulePrefix}${ObjectType}Object
161+
https://learn.microsoft.com/powershell/module/az.${ModuleName}/new-Az${ModulePrefix}${ObjectType}Object
162162
#>
163163
function New-Az${ModulePrefix}${ObjectType}Object {
164164
[OutputType('${ObjectTypeWithNamespace}')]

src/ManagedServiceIdentity/custom/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ These provide functionality to our HTTP pipeline and other useful features. In s
3232
### Attributes
3333
For processing the cmdlets, we've created some additional attributes:
3434
- `Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DescriptionAttribute`
35-
- Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
35+
- Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
3636
- `Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotExportAttribute`
3737
- Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.ManagedServiceIdentity`.
3838
- `Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.InternalExportAttribute`

src/ManagedServiceIdentity/exports/Get-AzFederatedIdentityCredentials.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ INPUTOBJECT <IManagedServiceIdentity>: Identity Parameter
4545
[Scope <String>]: The resource provider scope of the resource. Parent resource being extended by Managed Identities.
4646
[SubscriptionId <String>]: The Id of the Subscription to which the identity belongs.
4747
.Link
48-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/get-azfederatedidentitycredentials
48+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azfederatedidentitycredentials
4949
#>
5050
function Get-AzFederatedIdentityCredentials {
5151
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential])]

src/ManagedServiceIdentity/exports/Get-AzSystemAssignedIdentity.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Get-AzSystemAssignedIdentity -Scope "/subscriptions/00000000-0000-0000-000000000
2525
.Outputs
2626
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity
2727
.Link
28-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/get-azsystemassignedidentity
28+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azsystemassignedidentity
2929
#>
3030
function Get-AzSystemAssignedIdentity {
3131
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity])]

src/ManagedServiceIdentity/exports/Get-AzUserAssignedIdentity.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ INPUTOBJECT <IManagedServiceIdentity>: Identity Parameter
4646
[Scope <String>]: The resource provider scope of the resource. Parent resource being extended by Managed Identities.
4747
[SubscriptionId <String>]: The Id of the Subscription to which the identity belongs.
4848
.Link
49-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentity
49+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentity
5050
#>
5151
function Get-AzUserAssignedIdentity {
5252
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity])]

src/ManagedServiceIdentity/exports/Get-AzUserAssignedIdentityAssociatedResource.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Get-AzUserAssignedIdentityAssociatedResource -ResourceGroupName azure-rg-test -N
2828
.Outputs
2929
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IAzureResource
3030
.Link
31-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentityassociatedresource
31+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentityassociatedresource
3232
#>
3333
function Get-AzUserAssignedIdentityAssociatedResource {
3434
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IAzureResource])]

src/ManagedServiceIdentity/exports/New-AzFederatedIdentityCredentials.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ New-AzFederatedIdentityCredentials -ResourceGroupName azure-rg-test -IdentityNam
3030
.Outputs
3131
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential
3232
.Link
33-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/new-azfederatedidentitycredentials
33+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/new-azfederatedidentitycredentials
3434
#>
3535
function New-AzFederatedIdentityCredentials {
3636
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential])]

src/ManagedServiceIdentity/exports/New-AzUserAssignedIdentity.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ New-AzUserAssignedIdentity -ResourceGroupName azure-rg-test -Name uai-pwsh01 -Lo
2525
.Outputs
2626
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity
2727
.Link
28-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/new-azuserassignedidentity
28+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/new-azuserassignedidentity
2929
#>
3030
function New-AzUserAssignedIdentity {
3131
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity])]

src/ManagedServiceIdentity/exports/ProxyCmdletDefinitions.ps1

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ INPUTOBJECT <IManagedServiceIdentity>: Identity Parameter
4545
[Scope <String>]: The resource provider scope of the resource. Parent resource being extended by Managed Identities.
4646
[SubscriptionId <String>]: The Id of the Subscription to which the identity belongs.
4747
.Link
48-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/get-azfederatedidentitycredentials
48+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azfederatedidentitycredentials
4949
#>
5050
function Get-AzFederatedIdentityCredentials {
5151
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential])]
@@ -237,7 +237,7 @@ Get-AzSystemAssignedIdentity -Scope "/subscriptions/00000000-0000-0000-000000000
237237
.Outputs
238238
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity
239239
.Link
240-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/get-azsystemassignedidentity
240+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azsystemassignedidentity
241241
#>
242242
function Get-AzSystemAssignedIdentity {
243243
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity])]
@@ -386,7 +386,7 @@ Get-AzUserAssignedIdentityAssociatedResource -ResourceGroupName azure-rg-test -N
386386
.Outputs
387387
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IAzureResource
388388
.Link
389-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentityassociatedresource
389+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentityassociatedresource
390390
#>
391391
function Get-AzUserAssignedIdentityAssociatedResource {
392392
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IAzureResource])]
@@ -599,7 +599,7 @@ INPUTOBJECT <IManagedServiceIdentity>: Identity Parameter
599599
[Scope <String>]: The resource provider scope of the resource. Parent resource being extended by Managed Identities.
600600
[SubscriptionId <String>]: The Id of the Subscription to which the identity belongs.
601601
.Link
602-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentity
602+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentity
603603
#>
604604
function Get-AzUserAssignedIdentity {
605605
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity])]
@@ -778,7 +778,7 @@ New-AzFederatedIdentityCredentials -ResourceGroupName azure-rg-test -IdentityNam
778778
.Outputs
779779
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential
780780
.Link
781-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/new-azfederatedidentitycredentials
781+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/new-azfederatedidentitycredentials
782782
#>
783783
function New-AzFederatedIdentityCredentials {
784784
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential])]
@@ -968,7 +968,7 @@ New-AzUserAssignedIdentity -ResourceGroupName azure-rg-test -Name uai-pwsh01 -Lo
968968
.Outputs
969969
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity
970970
.Link
971-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/new-azuserassignedidentity
971+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/new-azuserassignedidentity
972972
#>
973973
function New-AzUserAssignedIdentity {
974974
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity])]
@@ -1158,7 +1158,7 @@ INPUTOBJECT <IManagedServiceIdentity>: Identity Parameter
11581158
[Scope <String>]: The resource provider scope of the resource. Parent resource being extended by Managed Identities.
11591159
[SubscriptionId <String>]: The Id of the Subscription to which the identity belongs.
11601160
.Link
1161-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/remove-azfederatedidentitycredentials
1161+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/remove-azfederatedidentitycredentials
11621162
#>
11631163
function Remove-AzFederatedIdentityCredentials {
11641164
[OutputType([System.Boolean])]
@@ -1355,7 +1355,7 @@ INPUTOBJECT <IManagedServiceIdentity>: Identity Parameter
13551355
[Scope <String>]: The resource provider scope of the resource. Parent resource being extended by Managed Identities.
13561356
[SubscriptionId <String>]: The Id of the Subscription to which the identity belongs.
13571357
.Link
1358-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/remove-azuserassignedidentity
1358+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/remove-azuserassignedidentity
13591359
#>
13601360
function Remove-AzUserAssignedIdentity {
13611361
[OutputType([System.Boolean])]
@@ -1548,7 +1548,7 @@ INPUTOBJECT <IManagedServiceIdentity>: Identity Parameter
15481548
[Scope <String>]: The resource provider scope of the resource. Parent resource being extended by Managed Identities.
15491549
[SubscriptionId <String>]: The Id of the Subscription to which the identity belongs.
15501550
.Link
1551-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/update-azfederatedidentitycredentials
1551+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/update-azfederatedidentitycredentials
15521552
#>
15531553
function Update-AzFederatedIdentityCredentials {
15541554
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential])]
@@ -1762,7 +1762,7 @@ INPUTOBJECT <IManagedServiceIdentity>: Identity Parameter
17621762
[Scope <String>]: The resource provider scope of the resource. Parent resource being extended by Managed Identities.
17631763
[SubscriptionId <String>]: The Id of the Subscription to which the identity belongs.
17641764
.Link
1765-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/update-azuserassignedidentity
1765+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/update-azuserassignedidentity
17661766
#>
17671767
function Update-AzUserAssignedIdentity {
17681768
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity])]

src/ManagedServiceIdentity/exports/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Exports
2-
This directory contains the cmdlets *exported by* `Az.ManagedServiceIdentity`. No other cmdlets in this repository are directly exported. What that means is the `Az.ManagedServiceIdentity` module will run [Export-ModuleMember](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation.
2+
This directory contains the cmdlets *exported by* `Az.ManagedServiceIdentity`. No other cmdlets in this repository are directly exported. What that means is the `Az.ManagedServiceIdentity` module will run [Export-ModuleMember](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation.
33

44
## Info
55
- Modifiable: no

src/ManagedServiceIdentity/exports/Remove-AzFederatedIdentityCredentials.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ INPUTOBJECT <IManagedServiceIdentity>: Identity Parameter
4141
[Scope <String>]: The resource provider scope of the resource. Parent resource being extended by Managed Identities.
4242
[SubscriptionId <String>]: The Id of the Subscription to which the identity belongs.
4343
.Link
44-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/remove-azfederatedidentitycredentials
44+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/remove-azfederatedidentitycredentials
4545
#>
4646
function Remove-AzFederatedIdentityCredentials {
4747
[OutputType([System.Boolean])]

src/ManagedServiceIdentity/exports/Remove-AzUserAssignedIdentity.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ INPUTOBJECT <IManagedServiceIdentity>: Identity Parameter
4141
[Scope <String>]: The resource provider scope of the resource. Parent resource being extended by Managed Identities.
4242
[SubscriptionId <String>]: The Id of the Subscription to which the identity belongs.
4343
.Link
44-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/remove-azuserassignedidentity
44+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/remove-azuserassignedidentity
4545
#>
4646
function Remove-AzUserAssignedIdentity {
4747
[OutputType([System.Boolean])]

src/ManagedServiceIdentity/exports/Update-AzFederatedIdentityCredentials.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ INPUTOBJECT <IManagedServiceIdentity>: Identity Parameter
4343
[Scope <String>]: The resource provider scope of the resource. Parent resource being extended by Managed Identities.
4444
[SubscriptionId <String>]: The Id of the Subscription to which the identity belongs.
4545
.Link
46-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/update-azfederatedidentitycredentials
46+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/update-azfederatedidentitycredentials
4747
#>
4848
function Update-AzFederatedIdentityCredentials {
4949
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential])]

src/ManagedServiceIdentity/exports/Update-AzUserAssignedIdentity.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ INPUTOBJECT <IManagedServiceIdentity>: Identity Parameter
4141
[Scope <String>]: The resource provider scope of the resource. Parent resource being extended by Managed Identities.
4242
[SubscriptionId <String>]: The Id of the Subscription to which the identity belongs.
4343
.Link
44-
https://docs.microsoft.com/powershell/module/az.managedserviceidentity/update-azuserassignedidentity
44+
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/update-azuserassignedidentity
4545
#>
4646
function Update-AzUserAssignedIdentity {
4747
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity])]

src/ManagedServiceIdentity/generated/runtime/BuildTime/Models/PsHelpMarkdownOutputs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ internal class ModulePageMetadataOutput
133133
{
134134
public PsModuleHelpInfo ModuleInfo { get; }
135135

136-
private static string HelpLinkPrefix { get; } = @"https://docs.microsoft.com/powershell/module/";
136+
private static string HelpLinkPrefix { get; } = @"https://learn.microsoft.com/powershell/module/";
137137

138138
public ModulePageMetadataOutput(PsModuleHelpInfo moduleInfo)
139139
{

src/ManagedServiceIdentity/generated/runtime/BuildTime/Models/PsProxyTypes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ internal class CommentInfo
367367
public string OnlineVersion { get; }
368368
public string[] RelatedLinks { get; }
369369

370-
private const string HelpLinkPrefix = @"https://docs.microsoft.com/powershell/module/";
370+
private const string HelpLinkPrefix = @"https://learn.microsoft.com/powershell/module/";
371371

372372
public CommentInfo(VariantGroup variantGroup)
373373
{

src/ManagedServiceIdentity/help/Az.ManagedServiceIdentity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
Module Name: Az.ManagedServiceIdentity
33
Module Guid: 1f09fbda-2563-4cfc-9098-100c27b52fa1
4-
Download Help Link: https://docs.microsoft.com/powershell/module/az.managedserviceidentity
4+
Download Help Link: https://learn.microsoft.com/powershell/module/az.managedserviceidentity
55
Help Version: 1.0.0.0
66
Locale: en-US
77
---

src/ManagedServiceIdentity/help/Get-AzFederatedIdentityCredentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file:
33
Module Name: Az.ManagedServiceIdentity
4-
online version: https://docs.microsoft.com/powershell/module/az.managedserviceidentity/get-azfederatedidentitycredentials
4+
online version: https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azfederatedidentitycredentials
55
schema: 2.0.0
66
---
77

src/ManagedServiceIdentity/help/Get-AzSystemAssignedIdentity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file:
33
Module Name: Az.ManagedServiceIdentity
4-
online version: https://docs.microsoft.com/powershell/module/az.managedserviceidentity/get-azsystemassignedidentity
4+
online version: https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azsystemassignedidentity
55
schema: 2.0.0
66
---
77

src/ManagedServiceIdentity/help/Get-AzUserAssignedIdentity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file:
33
Module Name: Az.ManagedServiceIdentity
4-
online version: https://docs.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentity
4+
online version: https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentity
55
schema: 2.0.0
66
---
77

src/ManagedServiceIdentity/help/Get-AzUserAssignedIdentityAssociatedResource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file:
33
Module Name: Az.ManagedServiceIdentity
4-
online version: https://docs.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentityassociatedresource
4+
online version: https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentityassociatedresource
55
schema: 2.0.0
66
---
77

src/ManagedServiceIdentity/help/New-AzFederatedIdentityCredentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file:
33
Module Name: Az.ManagedServiceIdentity
4-
online version: https://docs.microsoft.com/powershell/module/az.managedserviceidentity/new-azfederatedidentitycredentials
4+
online version: https://learn.microsoft.com/powershell/module/az.managedserviceidentity/new-azfederatedidentitycredentials
55
schema: 2.0.0
66
---
77

src/ManagedServiceIdentity/help/New-AzUserAssignedIdentity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file:
33
Module Name: Az.ManagedServiceIdentity
4-
online version: https://docs.microsoft.com/powershell/module/az.managedserviceidentity/new-azuserassignedidentity
4+
online version: https://learn.microsoft.com/powershell/module/az.managedserviceidentity/new-azuserassignedidentity
55
schema: 2.0.0
66
---
77

src/ManagedServiceIdentity/help/Remove-AzFederatedIdentityCredentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file:
33
Module Name: Az.ManagedServiceIdentity
4-
online version: https://docs.microsoft.com/powershell/module/az.managedserviceidentity/remove-azfederatedidentitycredentials
4+
online version: https://learn.microsoft.com/powershell/module/az.managedserviceidentity/remove-azfederatedidentitycredentials
55
schema: 2.0.0
66
---
77

src/ManagedServiceIdentity/help/Remove-AzUserAssignedIdentity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file:
33
Module Name: Az.ManagedServiceIdentity
4-
online version: https://docs.microsoft.com/powershell/module/az.managedserviceidentity/remove-azuserassignedidentity
4+
online version: https://learn.microsoft.com/powershell/module/az.managedserviceidentity/remove-azuserassignedidentity
55
schema: 2.0.0
66
---
77

0 commit comments

Comments
 (0)