Skip to content

Commit

Permalink
Migrate Resources from generation to main (#26944)
Browse files Browse the repository at this point in the history
* Move Resources to main

* Update ChangeLog.md

---------

Co-authored-by: Yabo Hu <[email protected]>
  • Loading branch information
azure-powershell-bot and VeryEarly authored Dec 30, 2024
1 parent c8c5adb commit f302d6a
Show file tree
Hide file tree
Showing 220 changed files with 4,164 additions and 938 deletions.
2 changes: 1 addition & 1 deletion src/Resources/Authorization.Autorest/Az.Authorization.psd1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@{
GUID = '7501974d-011d-40c9-8f5c-8aca539e2c8b'
GUID = '7f96e662-b170-4f95-899f-bbd1828cd20b'
RootModule = './Az.Authorization.psm1'
ModuleVersion = '0.1.0'
CompatiblePSEditions = 'Core', 'Desktop'
Expand Down
9 changes: 9 additions & 0 deletions src/Resources/Authorization.Autorest/generate-portal-ux.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,16 @@ function New-MetadataForParameterSet()
$cmdletName = Get-MappedCmdletFromFunctionName $ParameterSetInfo.Name
$description = (Get-CmdletAttribute -CmdletInfo $ParameterSetInfo -AttributeName "DescriptionAttribute").Description
[object[]]$example = New-ExampleForParameterSet $ParameterSetInfo
if ($Null -eq $example)
{
$example = @()
}

[string[]]$signature = New-ParameterArrayInParameterSet $ParameterSetInfo
if ($Null -eq $signature)
{
$signature = @()
}

return @{
Path = $httpPath
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
Module Name: Az.Authorization
Module Guid: 7501974d-011d-40c9-8f5c-8aca539e2c8b
Module Guid: 7f96e662-b170-4f95-899f-bbd1828cd20b
Download Help Link: https://learn.microsoft.com/powershell/module/az.authorization
Help Version: 1.0.0.0
Locale: en-US
Expand Down
9 changes: 9 additions & 0 deletions src/Resources/DataBoundary.Autorest/generate-portal-ux.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,16 @@ function New-MetadataForParameterSet()
$cmdletName = Get-MappedCmdletFromFunctionName $ParameterSetInfo.Name
$description = (Get-CmdletAttribute -CmdletInfo $ParameterSetInfo -AttributeName "DescriptionAttribute").Description
[object[]]$example = New-ExampleForParameterSet $ParameterSetInfo
if ($Null -eq $example)
{
$example = @()
}

[string[]]$signature = New-ParameterArrayInParameterSet $ParameterSetInfo
if ($Null -eq $signature)
{
$signature = @()
}

return @{
Path = $httpPath
Expand Down
14 changes: 13 additions & 1 deletion src/Resources/MSGraph.Autorest/custom/New-AzADApplication.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,11 @@ function New-AzADApplication {
[System.String[]]
${PublicClientRedirectUri},

[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
[System.Int32]
${RequestedAccessTokenVersion},

[Parameter()]
[AllowEmptyCollection()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
Expand All @@ -513,7 +518,6 @@ function New-AzADApplication {
# To construct, see NOTES section for REQUIREDRESOURCEACCESS properties and create a hash table.
${RequiredResourceAccess},


[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
[System.String]
Expand Down Expand Up @@ -672,6 +676,14 @@ function New-AzADApplication {
$null = $PSBoundParameters.Remove('PublicClientRedirectUri')
}

if ($PSBoundParameters['RequestedAccessTokenVersion'] -and $PSBoundParameters['Api']) {
$PSBoundParameters['Api'].RequestedAccessTokenVersion = $PSBoundParameters['RequestedAccessTokenVersion']
}
elseif ($PSBoundParameters['RequestedAccessTokenVersion']) {
$PSBoundParameters['Api'] = New-Object -TypeName "Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.MicrosoftGraphApiApplication" -Property @{'RequestedAccessTokenVersion' = $PSBoundParameters['RequestedAccessTokenVersion'] }
}
$null = $PSBoundParameters.Remove('RequestedAccessTokenVersion')

if ($PSBoundParameters['StartDate']) {
$sd = $PSBoundParameters['StartDate']
$null = $PSBoundParameters.Remove('StartDate')
Expand Down
13 changes: 13 additions & 0 deletions src/Resources/MSGraph.Autorest/custom/Update-AzADApplication.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,11 @@ function Update-AzADApplication {
[System.String[]]
${PublicClientRedirectUri},

[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
[System.Int32]
${RequestedAccessTokenVersion},

[Parameter()]
[AllowEmptyCollection()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
Expand Down Expand Up @@ -549,6 +554,14 @@ function Update-AzADApplication {
$null = $PSBoundParameters.Remove('PublicClientRedirectUri')
}

if ($PSBoundParameters['RequestedAccessTokenVersion'] -and $PSBoundParameters['Api']) {
$PSBoundParameters['Api'].RequestedAccessTokenVersion = $PSBoundParameters['RequestedAccessTokenVersion']
}
elseif ($PSBoundParameters['RequestedAccessTokenVersion']) {
$PSBoundParameters['Api'] = New-Object -TypeName "Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.MicrosoftGraphApiApplication" -Property @{'RequestedAccessTokenVersion' = $PSBoundParameters['RequestedAccessTokenVersion'] }
}
$null = $PSBoundParameters.Remove('RequestedAccessTokenVersion')

Az.MSGraph.internal\Update-AzADApplication @PSBoundParameters
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -938,6 +938,11 @@ param(
[System.String[]]
${PublicClientRedirectUri},

[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
[System.Int32]
${RequestedAccessTokenVersion},

[Parameter()]
[AllowEmptyCollection()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
Expand Down
10 changes: 10 additions & 0 deletions src/Resources/MSGraph.Autorest/exports/ProxyCmdletDefinitions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7704,6 +7704,11 @@ param(
[System.String[]]
${PublicClientRedirectUri},

[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
[System.Int32]
${RequestedAccessTokenVersion},

[Parameter()]
[AllowEmptyCollection()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
Expand Down Expand Up @@ -16526,6 +16531,11 @@ param(
[System.String[]]
${PublicClientRedirectUri},

[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
[System.Int32]
${RequestedAccessTokenVersion},

[Parameter()]
[AllowEmptyCollection()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1189,6 +1189,11 @@ param(
[System.String[]]
${PublicClientRedirectUri},

[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
[System.Int32]
${RequestedAccessTokenVersion},

[Parameter()]
[AllowEmptyCollection()]
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Category('Body')]
Expand Down
9 changes: 9 additions & 0 deletions src/Resources/MSGraph.Autorest/generate-portal-ux.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,16 @@ function New-MetadataForParameterSet()
$cmdletName = Get-MappedCmdletFromFunctionName $ParameterSetInfo.Name
$description = (Get-CmdletAttribute -CmdletInfo $ParameterSetInfo -AttributeName "DescriptionAttribute").Description
[object[]]$example = New-ExampleForParameterSet $ParameterSetInfo
if ($Null -eq $example)
{
$example = @()
}

[string[]]$signature = New-ParameterArrayInParameterSet $ParameterSetInfo
if ($Null -eq $signature)
{
$signature = @()
}

return @{
Path = $httpPath
Expand Down
49 changes: 32 additions & 17 deletions src/Resources/MSGraph.Autorest/help/New-AzADApplication.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ New-AzADApplication -DisplayName <String> [-AddIn <IMicrosoftGraphAddIn[]>]
[-LogoInputFile <String>] [-Note <String>] [-Oauth2RequirePostResponse]
[-OptionalClaim <IMicrosoftGraphOptionalClaims>]
[-ParentalControlSetting <IMicrosoftGraphParentalControlSettings>] [-PublicClientRedirectUri <String[]>]
[-ReplyUrls <String[]>] [-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>]
[-ServiceManagementReference <String>] [-SignInAudience <String>] [-SPARedirectUri <String[]>]
[-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-ReplyUrls <String[]>] [-RequestedAccessTokenVersion <Int32>]
[-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>] [-ServiceManagementReference <String>]
[-SignInAudience <String>] [-SPARedirectUri <String[]>] [-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-TokenIssuancePolicy <IMicrosoftGraphTokenIssuancePolicy[]>]
[-TokenLifetimePolicy <IMicrosoftGraphTokenLifetimePolicy[]>] [-Web <IMicrosoftGraphWebApplication>]
[-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
Expand All @@ -44,9 +44,9 @@ New-AzADApplication -DisplayName <String> -KeyCredentials <IMicrosoftGraphKeyCre
[-LogoInputFile <String>] [-Note <String>] [-Oauth2RequirePostResponse]
[-OptionalClaim <IMicrosoftGraphOptionalClaims>]
[-ParentalControlSetting <IMicrosoftGraphParentalControlSettings>] [-PublicClientRedirectUri <String[]>]
[-ReplyUrls <String[]>] [-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>]
[-ServiceManagementReference <String>] [-SignInAudience <String>] [-SPARedirectUri <String[]>]
[-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-ReplyUrls <String[]>] [-RequestedAccessTokenVersion <Int32>]
[-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>] [-ServiceManagementReference <String>]
[-SignInAudience <String>] [-SPARedirectUri <String[]>] [-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-TokenIssuancePolicy <IMicrosoftGraphTokenIssuancePolicy[]>]
[-TokenLifetimePolicy <IMicrosoftGraphTokenLifetimePolicy[]>] [-Web <IMicrosoftGraphWebApplication>]
[-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
Expand All @@ -64,10 +64,10 @@ New-AzADApplication -CertValue <String> -DisplayName <String> [-AddIn <IMicrosof
[-IsFallbackPublicClient] [-LogoInputFile <String>] [-Note <String>] [-Oauth2RequirePostResponse]
[-OptionalClaim <IMicrosoftGraphOptionalClaims>]
[-ParentalControlSetting <IMicrosoftGraphParentalControlSettings>] [-PublicClientRedirectUri <String[]>]
[-ReplyUrls <String[]>] [-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>]
[-ServiceManagementReference <String>] [-SignInAudience <String>] [-SPARedirectUri <String[]>]
[-StartDate <DateTime>] [-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-TokenIssuancePolicy <IMicrosoftGraphTokenIssuancePolicy[]>]
[-ReplyUrls <String[]>] [-RequestedAccessTokenVersion <Int32>]
[-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>] [-ServiceManagementReference <String>]
[-SignInAudience <String>] [-SPARedirectUri <String[]>] [-StartDate <DateTime>] [-Tag <String[]>]
[-TokenEncryptionKeyId <String>] [-TokenIssuancePolicy <IMicrosoftGraphTokenIssuancePolicy[]>]
[-TokenLifetimePolicy <IMicrosoftGraphTokenLifetimePolicy[]>] [-Web <IMicrosoftGraphWebApplication>]
[-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
```
Expand All @@ -84,9 +84,9 @@ New-AzADApplication -DisplayName <String> -PasswordCredentials <IMicrosoftGraphP
[-LogoInputFile <String>] [-Note <String>] [-Oauth2RequirePostResponse]
[-OptionalClaim <IMicrosoftGraphOptionalClaims>]
[-ParentalControlSetting <IMicrosoftGraphParentalControlSettings>] [-PublicClientRedirectUri <String[]>]
[-ReplyUrls <String[]>] [-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>]
[-ServiceManagementReference <String>] [-SignInAudience <String>] [-SPARedirectUri <String[]>]
[-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-ReplyUrls <String[]>] [-RequestedAccessTokenVersion <Int32>]
[-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>] [-ServiceManagementReference <String>]
[-SignInAudience <String>] [-SPARedirectUri <String[]>] [-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-TokenIssuancePolicy <IMicrosoftGraphTokenIssuancePolicy[]>]
[-TokenLifetimePolicy <IMicrosoftGraphTokenLifetimePolicy[]>] [-Web <IMicrosoftGraphWebApplication>]
[-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
Expand All @@ -104,10 +104,10 @@ New-AzADApplication -DisplayName <String> [-AddIn <IMicrosoftGraphAddIn[]>]
[-IsFallbackPublicClient] [-LogoInputFile <String>] [-Note <String>] [-Oauth2RequirePostResponse]
[-OptionalClaim <IMicrosoftGraphOptionalClaims>]
[-ParentalControlSetting <IMicrosoftGraphParentalControlSettings>] [-PublicClientRedirectUri <String[]>]
[-ReplyUrls <String[]>] [-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>]
[-ServiceManagementReference <String>] [-SignInAudience <String>] [-SPARedirectUri <String[]>]
[-StartDate <DateTime>] [-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-TokenIssuancePolicy <IMicrosoftGraphTokenIssuancePolicy[]>]
[-ReplyUrls <String[]>] [-RequestedAccessTokenVersion <Int32>]
[-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>] [-ServiceManagementReference <String>]
[-SignInAudience <String>] [-SPARedirectUri <String[]>] [-StartDate <DateTime>] [-Tag <String[]>]
[-TokenEncryptionKeyId <String>] [-TokenIssuancePolicy <IMicrosoftGraphTokenIssuancePolicy[]>]
[-TokenLifetimePolicy <IMicrosoftGraphTokenLifetimePolicy[]>] [-Web <IMicrosoftGraphWebApplication>]
[-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
```
Expand Down Expand Up @@ -588,6 +588,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -RequestedAccessTokenVersion
```yaml
Type: System.Int32
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -RequiredResourceAccess
Specifies the resources that the application needs to access.
This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources.
Expand Down
33 changes: 24 additions & 9 deletions src/Resources/MSGraph.Autorest/help/Update-AzADApplication.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Update-AzADApplication -ObjectId <String> [-AddIn <IMicrosoftGraphAddIn[]>]
[-IsFallbackPublicClient] [-LogoInputFile <String>] [-Note <String>] [-Oauth2RequirePostResponse]
[-OptionalClaim <IMicrosoftGraphOptionalClaims>]
[-ParentalControlSetting <IMicrosoftGraphParentalControlSettings>] [-PublicClientRedirectUri <String[]>]
[-ReplyUrl <String[]>] [-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>]
[-ServiceManagementReference <String>] [-SignInAudience <String>] [-SPARedirectUri <String[]>]
[-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-ReplyUrl <String[]>] [-RequestedAccessTokenVersion <Int32>]
[-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>] [-ServiceManagementReference <String>]
[-SignInAudience <String>] [-SPARedirectUri <String[]>] [-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-TokenIssuancePolicy <IMicrosoftGraphTokenIssuancePolicy[]>]
[-TokenLifetimePolicy <IMicrosoftGraphTokenLifetimePolicy[]>] [-Web <IMicrosoftGraphWebApplication>]
[-DefaultProfile <PSObject>] [-PassThru] [-Confirm] [-WhatIf] [<CommonParameters>]
Expand All @@ -44,9 +44,9 @@ Update-AzADApplication -ApplicationId <Guid> [-AddIn <IMicrosoftGraphAddIn[]>]
[-IsFallbackPublicClient] [-LogoInputFile <String>] [-Note <String>] [-Oauth2RequirePostResponse]
[-OptionalClaim <IMicrosoftGraphOptionalClaims>]
[-ParentalControlSetting <IMicrosoftGraphParentalControlSettings>] [-PublicClientRedirectUri <String[]>]
[-ReplyUrl <String[]>] [-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>]
[-ServiceManagementReference <String>] [-SignInAudience <String>] [-SPARedirectUri <String[]>]
[-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-ReplyUrl <String[]>] [-RequestedAccessTokenVersion <Int32>]
[-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>] [-ServiceManagementReference <String>]
[-SignInAudience <String>] [-SPARedirectUri <String[]>] [-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-TokenIssuancePolicy <IMicrosoftGraphTokenIssuancePolicy[]>]
[-TokenLifetimePolicy <IMicrosoftGraphTokenLifetimePolicy[]>] [-Web <IMicrosoftGraphWebApplication>]
[-DefaultProfile <PSObject>] [-PassThru] [-Confirm] [-WhatIf] [<CommonParameters>]
Expand All @@ -64,9 +64,9 @@ Update-AzADApplication -InputObject <IMicrosoftGraphApplication> [-AddIn <IMicro
[-IsFallbackPublicClient] [-LogoInputFile <String>] [-Note <String>] [-Oauth2RequirePostResponse]
[-OptionalClaim <IMicrosoftGraphOptionalClaims>]
[-ParentalControlSetting <IMicrosoftGraphParentalControlSettings>] [-PublicClientRedirectUri <String[]>]
[-ReplyUrl <String[]>] [-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>]
[-ServiceManagementReference <String>] [-SignInAudience <String>] [-SPARedirectUri <String[]>]
[-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-ReplyUrl <String[]>] [-RequestedAccessTokenVersion <Int32>]
[-RequiredResourceAccess <IMicrosoftGraphRequiredResourceAccess[]>] [-ServiceManagementReference <String>]
[-SignInAudience <String>] [-SPARedirectUri <String[]>] [-Tag <String[]>] [-TokenEncryptionKeyId <String>]
[-TokenIssuancePolicy <IMicrosoftGraphTokenIssuancePolicy[]>]
[-TokenLifetimePolicy <IMicrosoftGraphTokenLifetimePolicy[]>] [-Web <IMicrosoftGraphWebApplication>]
[-DefaultProfile <PSObject>] [-PassThru] [-Confirm] [-WhatIf] [<CommonParameters>]
Expand Down Expand Up @@ -556,6 +556,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -RequestedAccessTokenVersion
```yaml
Type: System.Int32
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -RequiredResourceAccess
Specifies the resources that the application needs to access.
This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources.
Expand Down
9 changes: 9 additions & 0 deletions src/Resources/Policy.Autorest/generate-portal-ux.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,16 @@ function New-MetadataForParameterSet()
$cmdletName = Get-MappedCmdletFromFunctionName $ParameterSetInfo.Name
$description = (Get-CmdletAttribute -CmdletInfo $ParameterSetInfo -AttributeName "DescriptionAttribute").Description
[object[]]$example = New-ExampleForParameterSet $ParameterSetInfo
if ($Null -eq $example)
{
$example = @()
}

[string[]]$signature = New-ParameterArrayInParameterSet $ParameterSetInfo
if ($Null -eq $signature)
{
$signature = @()
}

return @{
Path = $httpPath
Expand Down
12 changes: 7 additions & 5 deletions src/Resources/Resources/Az.Resources.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 11/15/2024
# Generated on: 12/30/2024
#

@{
Expand Down Expand Up @@ -72,10 +72,10 @@ RequiredAssemblies = 'Authorization.Autorest/bin/Az.Authorization.private.dll',
'System.Runtime.CompilerServices.Unsafe.dll'

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
ScriptsToProcess = @()

# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()
TypesToProcess = @()

# Format files (.ps1xml) to be loaded when importing this module
FormatsToProcess = 'Authorization.Autorest/Az.Authorization.format.ps1xml',
Expand Down Expand Up @@ -253,7 +253,9 @@ PrivateData = @{
PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'Azure','ResourceManager','ARM','Provider','ResourceGroup','Deployment','ActiveDirectory','Authorization','Management','ManagementGroups','Tags'
Tags = 'Azure', 'ResourceManager', 'ARM', 'Provider', 'ResourceGroup',
'Deployment', 'ActiveDirectory', 'Authorization', 'Management',
'ManagementGroups', 'Tags'

# A URL to the license for this module.
LicenseUri = 'https://aka.ms/azps-license'
Expand All @@ -278,7 +280,7 @@ PrivateData = @{

} # End of PSData hashtable

} # End of PrivateData hashtable
} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''
Expand Down
1 change: 1 addition & 0 deletions src/Resources/Resources/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
## Upcoming Release
* Added Diagnostics/Warnings to WhatIf/Validate results for deployments.
* Fixed bug unexpected type issue: [#26752]
* Added parameter `RequestedAccessTokenVersion` for `New-AzADApplication` and `Update-AzADApplication`

## Version 7.7.0
* Updated Resources SDK to 2024-07-01.
Expand Down
Loading

0 comments on commit f302d6a

Please sign in to comment.