Skip to content

Migrate Resources from generation to main #24401

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = '90ee7f74-51af-4e60-ae68-70c82d6f9606'
GUID = 'e635c7d3-6095-451d-a4d8-a32d3c28de6b'
RootModule = './Az.Authorization.psm1'
ModuleVersion = '0.1.0'
CompatiblePSEditions = 'Core', 'Desktop'
Expand Down
1 change: 0 additions & 1 deletion src/Resources/Authorization.Autorest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
This directory contains the PowerShell module for the Authorization service.

---

## Info
- Modifiable: yes
- Generated: all
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
Module Name: Az.Authorization
Module Guid: 90ee7f74-51af-4e60-ae68-70c82d6f9606
Module Guid: e635c7d3-6095-451d-a4d8-a32d3c28de6b
Download Help Link: https://learn.microsoft.com/powershell/module/az.authorization
Help Version: 1.0.0.0
Locale: en-US
Expand Down
2 changes: 2 additions & 0 deletions src/Resources/MSGraph.Autorest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
This directory contains the PowerShell module for the MSGraph service.

---
## Status
[![Az.MSGraph](https://img.shields.io/powershellgallery/v/Az.MSGraph.svg?style=flat-square&label=Az.MSGraph "Az.MSGraph")](https://www.powershellgallery.com/packages/Az.MSGraph/)

## Info
- Modifiable: yes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ process {
'OwnedApplicationParameterSet' {
$null = $PSBoundParameters.Remove("OwnedApplication")
[System.Array]$apps = . Az.MSGraph.internal\Get-AzADUserOwnedApplication @PSBoundParameters
$PSCmdlet.WriteObject($apps)
$PSCmdlet.WriteObject($apps, $true)
return
}
default {
Expand Down
14 changes: 8 additions & 6 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: 2/29/2024
# Generated on: 3/17/2024
#

@{
Expand Down Expand Up @@ -57,9 +57,9 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.16.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Authorization.Autorest/bin/Az.Authorization.private.dll',
'Microsoft.Azure.PowerShell.Authorization.Management.Sdk.dll',
'Microsoft.Azure.Management.ManagementGroups.dll',
'Microsoft.Azure.Management.ResourceManager.dll',
'Microsoft.Azure.PowerShell.Authorization.Management.Sdk.dll',
'Microsoft.Azure.PowerShell.Resources.Management.Sdk.dll',
'Microsoft.Extensions.Caching.Abstractions.dll',
'Microsoft.Extensions.Caching.Memory.dll',
Expand All @@ -70,10 +70,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 @@ -241,7 +241,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 Down Expand Up @@ -270,7 +272,7 @@ PrivateData = @{

} # End of PSData hashtable

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

# HelpInfo URI of this module
# HelpInfoURI = ''
Expand Down
21 changes: 18 additions & 3 deletions src/Resources/Resources/help/Add-AzADAppPermission.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ Adds an API permission.
### ObjectIdParameterSet (Default)
```
Add-AzADAppPermission -ApiId <Guid> -PermissionId <String> -ObjectId <Guid> [-Type <String>]
[-DefaultProfile <PSObject>] [-WhatIf] [-Confirm] [<CommonParameters>]
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [-WhatIf] [-Confirm] [<CommonParameters>]
```

### AppIdParameterSet
```
Add-AzADAppPermission -ApiId <Guid> -PermissionId <String> [-Type <String>] -ApplicationId <Guid>
[-DefaultProfile <PSObject>] [-WhatIf] [-Confirm] [<CommonParameters>]
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [-WhatIf] [-Confirm] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -102,7 +102,7 @@ Accept wildcard characters: False
```

### -ObjectId
The unique identifier in Microsoft Entra ID.
The unique identifier in Azure AD.

```yaml
Type: System.Guid
Expand Down Expand Up @@ -131,6 +131,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ProgressAction
{{ Fill ProgressAction Description }}

```yaml
Type: System.Management.Automation.ActionPreference
Parameter Sets: (All)
Aliases: proga

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Type
Specifies whether the id property references an oauth2PermissionScopes(Scope, delegated permission) or an appRole(Role, application permission).

Expand Down
Loading