Skip to content

Commit

Permalink
added customization (#1018)
Browse files Browse the repository at this point in the history
  • Loading branch information
v-akarke authored Aug 22, 2024
1 parent ed1bf66 commit 75f8da9
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# ------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
# ------------------------------------------------------------------------------
@{
SourceName = "Get-AzureADServicePrincipalCreatedObject"
TargetName = "Get-MgServicePrincipalCreatedObject"
Parameters = @(
@{
SourceName = "ObjectId"
TargetName = "ServicePrincipalId"
ConversionType = "Name"
SpecialMapping = $null
}
)
Outputs = $null
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# ------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
# ------------------------------------------------------------------------------
@{
SourceName = "Get-AzureADServicePrincipalCreatedObject"
TargetName = "Get-MgBetaServicePrincipalCreatedObject"
Parameters = @(
@{
SourceName = "ObjectId"
TargetName = "ServicePrincipalId"
ConversionType = "Name"
SpecialMapping = $null
}
)
Outputs = $null
}

0 comments on commit 75f8da9

Please sign in to comment.