Skip to content

Commit 28b198a

Browse files
Migrate Resources from generation to main (Azure#19852)
* Move Resources to main * Update ChangeLog.md Co-authored-by: Yabo Hu <[email protected]>
1 parent ef2f1ec commit 28b198a

File tree

8 files changed

+19
-13
lines changed

8 files changed

+19
-13
lines changed

src/Resources/Authorization.Autorest/docs/Az.Authorization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Module Name: Az.Authorization
3-
Module Guid: faf9dbcb-8de4-4d0e-861b-ad848ca5d95b
3+
Module Guid: 9d5b297d-5504-4b61-8ea9-4c39da5d3b25
44
Download Help Link: https://docs.microsoft.com/powershell/module/az.authorization
55
Help Version: 1.0.0.0
66
Locale: en-US
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"swagger_commit": "71ceebe95c8b5b129930c014d062bcf2cf80961a",
2+
"node": "v14.15.5",
3+
"autorest": "`-- (empty)",
4+
"swagger_commit": "bfa95078d6bb55687bec2c6ad78834deafd7c3fb",
35
"autorest_modelerfour": "4.15.414",
46
"autorest_core": "3.9.2",
5-
"autorest": "`-- (empty)",
6-
"node": "v14.15.5",
77
"autorest_powershell": "3.0.494"
88
}

src/Resources/MSGraph.Autorest/custom/Add-AzADGroupMember.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Adds member to group.
1515
https://docs.microsoft.com/powershell/module/az.resources/add-azadgroupmember
1616
#>
1717
function Add-AzADGroupMember {
18-
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.PreviewMessageAttribute("This cmdlet is using API version beta which is under preview.")]
18+
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.PreviewMessageAttribute("This cmdlet is using a preview API version and is subject to breaking change in a future release.")]
1919
[OutputType([System.Boolean])]
2020
[CmdletBinding(DefaultParameterSetName='MemberObjectIdWithGroupObjectIdParameterSet', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
2121
param(

src/Resources/MSGraph.Autorest/custom/Get-AzADGroupMember.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ https://docs.microsoft.com/powershell/module/az.resources/get-azadgroupmember
1515
#>
1616

1717
function Get-AzADGroupMember {
18-
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.PreviewMessageAttribute("This cmdlet is using API version beta which is under preview.")]
18+
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.PreviewMessageAttribute("This cmdlet is using a preview API version and is subject to breaking change in a future release.")]
1919
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphDirectoryObject])]
2020
[CmdletBinding(DefaultParameterSetName='ObjectIdParameterSet', PositionalBinding=$false)]
2121
param(

src/Resources/MSGraph.Autorest/custom/Remove-AzADGroupMember.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Supports $expand.
2323
https://docs.microsoft.com/powershell/module/az.resources/remove-azadgroupmember
2424
#>
2525
function Remove-AzADGroupMember {
26-
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.PreviewMessageAttribute("This cmdlet is using API version beta which is under preview.")]
26+
[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Runtime.PreviewMessageAttribute("This cmdlet is using a preview API version and is subject to breaking change in a future release.")]
2727
[OutputType([System.Boolean])]
2828
[CmdletBinding(DefaultParameterSetName = 'ExplicitParameterSet ', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')]
2929
param(
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"swagger_commit": "71ceebe95c8b5b129930c014d062bcf2cf80961a",
2+
"node": "v14.15.5",
3+
"autorest": "`-- (empty)",
4+
"swagger_commit": "bfa95078d6bb55687bec2c6ad78834deafd7c3fb",
35
"autorest_modelerfour": "4.15.414",
46
"autorest_core": "3.9.2",
5-
"autorest": "`-- (empty)",
6-
"node": "v14.15.5",
77
"autorest_powershell": "3.0.494"
88
}

src/Resources/Resources/Az.Resources.psd1

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 10/15/2022
6+
# Generated on: 10/19/2022
77
#
88

99
@{
@@ -223,7 +223,9 @@ PrivateData = @{
223223
PSData = @{
224224

225225
# Tags applied to this module. These help with module discovery in online galleries.
226-
Tags = 'Azure','ResourceManager','ARM','Provider','ResourceGroup','Deployment','ActiveDirectory','Authorization','Management','ManagementGroups','Tags'
226+
Tags = 'Azure', 'ResourceManager', 'ARM', 'Provider', 'ResourceGroup',
227+
'Deployment', 'ActiveDirectory', 'Authorization', 'Management',
228+
'ManagementGroups', 'Tags'
227229

228230
# A URL to the license for this module.
229231
LicenseUri = 'https://aka.ms/azps-license'
@@ -248,7 +250,7 @@ PrivateData = @{
248250

249251
} # End of PSData hashtable
250252

251-
} # End of PrivateData hashtable
253+
} # End of PrivateData hashtable
252254

253255
# HelpInfo URI of this module
254256
# HelpInfoURI = ''

src/Resources/Resources/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
-->
2020

2121
## Upcoming Release
22+
* Polished preview warning message for:
23+
- Add-AzADGroupMember
24+
- Get-AzADGroupMember
25+
- Remove-AzADGroupMember
2226
* Fixed a `NullReferenceException` when deploying a JSON template using Bicep extensibility
2327

2428
## Version 6.3.1

0 commit comments

Comments
 (0)